Text-to-Image
Diffusers
Safetensors
StableDiffusion3Pipeline
flow-dppo
unirl
stable-diffusion-3.5
stable-diffusion-3.5-medium
Instructions to use Eculid/sd3.5-flowdppo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Eculid/sd3.5-flowdppo with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Eculid/sd3.5-flowdppo", 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
Maekami commited on
Commit ·
fd85a21
1
Parent(s): d72ff63
add readme
Browse files
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
|
| 3 |
+
base_model: stabilityai/stable-diffusion-3.5-medium
|
| 4 |
+
tags:
|
| 5 |
+
- flow-dppo
|
| 6 |
+
- unirl
|
| 7 |
+
- stable-diffusion-3.5
|
| 8 |
+
- stable-diffusion-3.5-medium
|
| 9 |
+
- arxiv:2606.11025
|
| 10 |
+
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# SD3.5 Medium Flow-DPPO
|
| 14 |
+
|
| 15 |
+
This repository hosts a Flow-DPPO checkpoint trained from Stable Diffusion 3.5 Medium using the UniRL Flow-DPPO recipe.
|
| 16 |
+
|
| 17 |
+
## Links
|
| 18 |
+
|
| 19 |
+
* Paper: https://huggingface.co/papers/2606.11025
|
| 20 |
+
* Code: https://github.com/Tencent-Hunyuan/UniRL
|
| 21 |
+
* Base model: https://huggingface.co/stabilityai/stable-diffusion-3.5-medium
|
| 22 |
+
|
| 23 |
+
## Notes
|
| 24 |
+
|
| 25 |
+
This checkpoint is provided as a community-contributed artifact for research use. It follows the usage and limitations of the Stable Diffusion 3.5 Medium base model.
|