Instructions to use Ryzan/fantasy-diffusion-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Ryzan/fantasy-diffusion-v1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Ryzan/fantasy-diffusion-v1", 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
|
@@ -3,6 +3,10 @@ license: creativeml-openrail-m
|
|
| 3 |
tags:
|
| 4 |
- text-to-image
|
| 5 |
- stable-diffusion
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
### fantasy-diffusion-v1 diffusion model trained by Ryzan with fast-DreamBooth
|
| 8 |
This is currently a base model
|
|
|
|
| 3 |
tags:
|
| 4 |
- text-to-image
|
| 5 |
- stable-diffusion
|
| 6 |
+
- art
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
library_name: diffusers
|
| 10 |
---
|
| 11 |
### fantasy-diffusion-v1 diffusion model trained by Ryzan with fast-DreamBooth
|
| 12 |
This is currently a base model
|