by Lykon
Open source · 52k downloads · 102 likes
DreamShaper 8 is an AI-powered image generation model, specifically fine-tuned from Stable Diffusion v1.5 to strike a balance between realism and a wide range of artistic styles. It excels at producing both photographic and stylized images, with a strong focus on detail consistency and diverse outputs. The model is well-suited for artists exploring creative realms as well as users looking to generate unique visuals for personal or professional projects. What sets it apart is its versatility, capable of adapting to different styles while maintaining consistent quality—though certain styles, like pure photorealism or pure anime, may require additional adjustments or supplementary tools.
lykon/dreamshaper-8 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/dreamshaper-8', 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(33)
image = pipe(prompt, generator=generator, num_inference_steps=25).images[0]
image.save("./image.png")
