Text-to-Image
Diffusers
English
StableDiffusionXLPipeline
stable-diffusion
stable-diffusion-xl
sdxl
photorealistic
photography
cinematic
portrait
juggernaut
rundiffusion
kandooai
Instructions to use RunDiffusion/Juggernaut-XL-v9 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use RunDiffusion/Juggernaut-XL-v9 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("RunDiffusion/Juggernaut-XL-v9", 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
Used diffusers/sdxl-to-diffusers tool to convert the Juggernaut XL V9 model to diffuser format.
#2
by MasterHouyi - opened
This PR adds fp32 and fp16 weights in safetensors format to RunDiffusion/Juggernaut-XL-v9
Used the diffusers/sdxl-to-diffusers tool to convert the Juggernaut XL V9 to diffuser format.
MasterHouyi changed pull request title from Adding `diffusers` weights of this model to Used diffusers/sdxl-to-diffusers tool to convert the Juggernaut XL V9 model to diffuser format.
Thanks for this. Are there any additional files that weren't included in the PR by Patrick at Huggingface?
Sorry. I do not know what the differences are between this PR and the one done by Patrick.
I saw that there is a tool to convert SD XL models to diffusers format and tried that (1st time doing so). If that tool created a PR that is a duplicate to Patrick's PR, please disregard this one.
No problem. Thanks!
RunDiffusion changed pull request status to closed