Instructions to use RunDiffusion/RunDiffusion-XL-Beta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use RunDiffusion/RunDiffusion-XL-Beta with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("RunDiffusion/RunDiffusion-XL-Beta", 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
Commit ·
2aa1a7f
1
Parent(s): 594aa87
Add some useful tags to better discover the model
Browse filesThis PR adds:
- "Art" tag so that it appears when people look for "Art"
- a task tag so that it appears under the "text-to-image" task
- and the stable-diffusion tag
README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
| 4 |
Additional License Restrictions Added by RunDiffusion.com
|
| 5 |
|
| 6 |
**Attribution:**
|
|
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
+
tags:
|
| 4 |
+
- text-to-image
|
| 5 |
+
- stable-diffusion
|
| 6 |
+
- art
|
| 7 |
---
|
| 8 |
+
|
| 9 |
Additional License Restrictions Added by RunDiffusion.com
|
| 10 |
|
| 11 |
**Attribution:**
|