Instructions to use Fazzie/PokemonGAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Fazzie/PokemonGAI with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Fazzie/PokemonGAI", dtype=torch.bfloat16, device_map="cuda") prompt = "dragon armored (eevee), wings, (fire claws), smoke, cityscape" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
| 1 |
---
|
| 2 |
pipeline_tag: text-to-image
|
| 3 |
widget:
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
My kids love this. Stable Diffusion 2.1 model trained, via Dreambooth, for generations 1-8 of Pokemon "Sugimori" designs. 768x768 for best results. Good for mixing species and types, adequate at applying species and types to non-pokemon terms (like fire horse).
|
| 8 |
|
|
|
|
| 1 |
---
|
| 2 |
pipeline_tag: text-to-image
|
| 3 |
widget:
|
| 4 |
+
- text: dragon armored (eevee), wings, (fire claws), smoke, cityscape
|
| 5 |
+
example_title: Dragon-Type Eevee
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
---
|
| 9 |
My kids love this. Stable Diffusion 2.1 model trained, via Dreambooth, for generations 1-8 of Pokemon "Sugimori" designs. 768x768 for best results. Good for mixing species and types, adequate at applying species and types to non-pokemon terms (like fire horse).
|
| 10 |
|