Instructions to use rain1011/pyramid-flow-sd3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use rain1011/pyramid-flow-sd3 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("rain1011/pyramid-flow-sd3", 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
Add pipeline tag
#4
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
| 2 |
license: mit
|
| 3 |
base_model:
|
| 4 |
- stabilityai/stable-diffusion-3-medium
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# ⚡️Pyramid Flow⚡️
|
|
|
|
| 2 |
license: mit
|
| 3 |
base_model:
|
| 4 |
- stabilityai/stable-diffusion-3-medium
|
| 5 |
+
pipeline_tag: text-to-video
|
| 6 |
+
tags:
|
| 7 |
+
- image-to-video
|
| 8 |
---
|
| 9 |
|
| 10 |
# ⚡️Pyramid Flow⚡️
|