Instructions to use lodestones/Chroma1-HD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lodestones/Chroma1-HD with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("lodestones/Chroma1-HD", 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
- Draw Things
- DiffusionBee
Which low step lora is the recommended?
#4
by BigDannyPt - opened
I could see that in the Flash version, you are recommending the heun 8 steps, I'm assuming is this one - https://huggingface.co/silveroxides/Chroma-LoRA-Experiments/tree/main/flash-heun
Is there any other recommended for this version?
I've been trying with both Chroma1.HD and Chroma1.HD-Flash, and it seems that with the normal HD is working correctly, but with the flash one is getting a little grainy.
But I was going to keep with Chroma1.HD, any way.
Thank you