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 ·
413e56f
1
Parent(s): 937d787
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
This is just a diffusers friendly version of [Justin Pinkney's miniSD checkpoint](https://huggingface.co/justinpinkney/miniSD).
|
| 2 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ru
|
| 4 |
+
- en
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
This is just a diffusers friendly version of [Justin Pinkney's miniSD checkpoint](https://huggingface.co/justinpinkney/miniSD).
|
| 8 |
|