Instructions to use Qilex/magic-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Qilex/magic-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("Qilex/magic-diffusion", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,10 +13,16 @@ tags:
|
|
| 13 |
This is a fine-tuned Stable Diffusion model trained on scans of Magic: the Gathering card artworks.
|
| 14 |
Use the tokens **_mtg style_** in your prompts.
|
| 15 |
|
| 16 |
-
It is intended to transfer the style and layout of modern (post 2008) Magic: the Gathering artwork.
|
| 17 |
|
| 18 |
It does not have additional knowledge of Magic-specific terms.
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
### 🧨 Diffusers
|
| 21 |
|
| 22 |
This model can be used like any other Stable Diffusion model. For more information,
|
|
|
|
| 13 |
This is a fine-tuned Stable Diffusion model trained on scans of Magic: the Gathering card artworks.
|
| 14 |
Use the tokens **_mtg style_** in your prompts.
|
| 15 |
|
|
|
|
| 16 |
|
| 17 |
It does not have additional knowledge of Magic-specific terms.
|
| 18 |
|
| 19 |
+
**Humans rendered with the model:**
|
| 20 |
+

|
| 21 |
+
**Non-humans rendered with the model:**
|
| 22 |
+

|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
### 🧨 Diffusers
|
| 27 |
|
| 28 |
This model can be used like any other Stable Diffusion model. For more information,
|