Downloads · 30 days
11K
1% of all-time downloads
Lykon/AnyLoRA
AnyLoRA is a text-to-image model from Lykon. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as creativeml-openrail-m.
lykon/AnyLoRA is a Stable Diffusion model that has been fine-tuned on runwayml/stable-diffusion-v1-5.
Downloads · 30 days
11K
1% of all-time downloads
All-time downloads
952K
Public
Parameters
860M
54.1 GB on disk
Likes
51
Public
Click a slice to open those files.
.safetensors34.6 GB · 77%
From the Hugging Face model README
lykon/AnyLoRA is a Stable Diffusion model that has been fine-tuned on runwayml/stable-diffusion-v1-5.
Please consider supporting me:
For more general information on how to run text-to-image models with 🧨 Diffusers, see the docs.
pip install diffusers transformers accelerate
from diffusers import AutoPipelineForText2Image, DEISMultistepScheduler
import torch
pipe = AutoPipelineForText2Image.from_pretrained('lykon/AnyLoRA', torch_dtype=torch.float16, variant="fp16")
pipe.scheduler = DEISMultistepScheduler.from_config(pipe.scheduler.config)
pipe = pipe.to("cuda")
prompt = "portrait photo of muscular bearded guy in a worn mech suit, light bokeh, intricate, steel metal, elegant, sharp focus, soft lighting, vibrant colors"
generator = torch.manual_seed(0)
image = pipe(prompt, num_inference_steps=20, generator=generator).images[0]
image.save("./image.png")