Instructions to use georgefen/DMD2-dreamshaper-v1-5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use georgefen/DMD2-dreamshaper-v1-5 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("georgefen/DMD2-dreamshaper-v1-5", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
I fine-tuned DMD2 StableDiffusion V1.5, based on the Dreamshaper model.
I set the CFG to 7, which significantly improved the generation quality.
example:
from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_pretrained("georgefen/DMD2-dreamshaper-v1-5").to("cuda")
prompt = "masterpiece, extremely intricate, realistic, portrait of a girl, medieval armor, metal reflections, upper body, outdoors, intense sunlight, far away castle, professional photograph of a stunning woman detailed, sharp focus, dramatic, award winning, cinematic lighting, octane render unreal engine, volumetrics dtx, film grain, blurry background, blurry foreground, bokeh, depth of field, sunset, motion blur, chainmail"
image = pipe(prompt=prompt, num_inference_steps=1, guidance_scale=0.0).images[0]
image.save("test.png")
Credits to:
- Downloads last month
- 1