stable-diffusion-v1-5-lcm-hybrid
1
—
by
HyHorX
Image Model
OTHER
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Example Usage (Diffusers)pythonpytorch
from diffusers import StableDiffusionPipeline, LCMScheduler
import torch
pipe = StableDiffusionPipeline.from_pretrained(
"HyHorX/stable-diffusion-v1-5-lcm-hybrid",
torch_dtype=torch.float16,
)
pipe.scheduler = LCMScheduler.from_config(pipe.scheduler.config)
pipe = pipe.to("cuda")
image = pipe(
prompt="a cinematic cyberpunk city at night",
num_inference_steps=4,
guidance_scale=1.5
).images[0]
image.save("result.png")Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.