Text-to-Image
Diffusers
Safetensors
StableDiffusionXLPipeline
stable-diffusion-xl
stable-diffusion
inversion
dpo
fine-tuned
Instructions to use ashllay/Inversion-DPO with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ashllay/Inversion-DPO with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ashllay/Inversion-DPO", 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
|
@@ -14,7 +14,11 @@ tags:
|
|
| 14 |
|
| 15 |
# Inversion-DPO
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
**Paper**: [Inversion-DPO: Precise and Efficient Post-Training for Diffusion Models](https://huggingface.co/papers/2507.11554)
|
| 20 |
|
|
|
|
| 14 |
|
| 15 |
# Inversion-DPO
|
| 16 |
|
| 17 |
+
**Original** https://huggingface.co/ezlee258258/Inversion-DPO
|
| 18 |
+
|
| 19 |
+
I have only added vae, text enconders from Stability AI, consolidated the unet and converted to a single .safetensor file FP32 and BF16.
|
| 20 |
+
|
| 21 |
+
**StabilityAI SDXL1.0** https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
|
| 22 |
|
| 23 |
**Paper**: [Inversion-DPO: Precise and Efficient Post-Training for Diffusion Models](https://huggingface.co/papers/2507.11554)
|
| 24 |
|