Text-to-Image
Diffusers
English
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
english
Instructions to use svjack/Stable-Diffusion-Pokemon-en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use svjack/Stable-Diffusion-Pokemon-en with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("svjack/Stable-Diffusion-Pokemon-en", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -23,7 +23,7 @@ For more information about our training method, see [train_text_to_image.py](htt
|
|
| 23 |
|
| 24 |
## Examples
|
| 25 |
|
| 26 |
-
Firstly, install our package as follows. This package is modified [🤗's Diffusers library](https://github.com/huggingface/diffusers) to run
|
| 27 |
|
| 28 |
|
| 29 |
```bash
|
|
|
|
| 23 |
|
| 24 |
## Examples
|
| 25 |
|
| 26 |
+
Firstly, install our package as follows. This package is modified [🤗's Diffusers library](https://github.com/huggingface/diffusers) to run English Stable Diffusion.
|
| 27 |
|
| 28 |
|
| 29 |
```bash
|