Text-to-Image
Diffusers
StableDiffusionPipeline
stable-diffusion
sygil-diffusion
sygil-devs
finetune
stable-diffusion-1.5
Instructions to use Sygil/Sygil-Diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Sygil/Sygil-Diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Sygil/Sygil-Diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "environment art, realistic" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
49a23c0
1
Parent(s): d658083
Update README.md
Browse files
README.md
CHANGED
|
@@ -58,7 +58,7 @@ pipe = pipe.to("cuda")
|
|
| 58 |
prompt = "a beautiful illustration of a fantasy forest"
|
| 59 |
image = pipe(prompt).images[0]
|
| 60 |
|
| 61 |
-
image.save("
|
| 62 |
```
|
| 63 |
|
| 64 |
**Notes**:
|
|
|
|
| 58 |
prompt = "a beautiful illustration of a fantasy forest"
|
| 59 |
image = pipe(prompt).images[0]
|
| 60 |
|
| 61 |
+
image.save("fantasy_forest_illustration.png")
|
| 62 |
```
|
| 63 |
|
| 64 |
**Notes**:
|