Instructions to use johnrobinsn/miniSD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use johnrobinsn/miniSD with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("johnrobinsn/miniSD", 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
Commit ·
b7d474f
1
Parent(s): 6b1cd10
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,3 +5,4 @@ language:
|
|
| 5 |
|
| 6 |
This is just a diffusers friendly version of [Justin Pinkney's miniSD checkpoint](https://huggingface.co/justinpinkney/miniSD).
|
| 7 |
|
|
|
|
|
|
| 5 |
|
| 6 |
This is just a diffusers friendly version of [Justin Pinkney's miniSD checkpoint](https://huggingface.co/justinpinkney/miniSD).
|
| 7 |
|
| 8 |
+
To find out more check out my [blog article](https://www.storminthecastle.com/posts/minisd/)
|