AAM XL AnimeMix_Turbo
Lykon/AAM_XL_AnimeMix_Turbo
is a Stable Diffusion model that has been fine-tuned on stabilityai/stable-diffusion-xl-base-1.0.
Please consider supporting me:
- on Patreon
- or buy me a coffee
License: Fair AI Public License 1.0-SD
Diffusers
For more general information on how to run text-to-image models with 𧨠Diffusers, see the docs.
- Installation
pip install diffusers transformers accelerate
- Run
from diffusers import AutoPipelineForText2Image, EulerAncestralDiscreteScheduler
import torch
pipe = AutoPipelineForText2Image.from_pretrained('Lykon/AAM_XL_AnimeMix_Turbo', torch_dtype=torch.float16, variant="fp16")
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
pipe = pipe.to("cuda")
prompt = "anime girl, night, blue light behind her, ((Galaxy, Lens flare)), short hair, flower field, night sky, cinematic shot. Wallpaper. (Blue color schema), detailed background, a city in the distance"
generator = torch.manual_seed(0)
image = pipe(prompt, num_inference_steps=8, guidance_scale=4).images[0]
image.save("./image.png")
- Downloads last month
- 278
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.