Commit ·
d89cc38
1
Parent(s): a8dacd6
Glow up the model card (#3)
Browse files- Glow up the model card (c57c9504f2bfedfe10d21cc7488eccaddb711d8c)
- add example (7188723f2abdf263dbfa8453d7926f457b95e86b)
- Update README.md (7ba06306e7b741e3e8d6e4ece5a714f2fca8acfc)
- Update README.md (318ed1dc8ae43b5f8c706f6802092871c5d385d6)
Co-authored-by: Apolinário from multimodal AI art <multimodalart@users.noreply.huggingface.co>
- README.md +32 -2
- dpo_turbo_robot.jpeg +0 -0
README.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
widget:
|
| 4 |
+
- text: '-'
|
| 5 |
+
output:
|
| 6 |
+
url: dpo_turbo_robot.jpeg
|
| 7 |
+
tags:
|
| 8 |
+
- turbo
|
| 9 |
+
- stable-diffusion
|
| 10 |
+
- stable-diffusion-xl
|
| 11 |
+
- dpo
|
| 12 |
+
inference:
|
| 13 |
+
parameters:
|
| 14 |
+
num_inference_steps: 8
|
| 15 |
+
---
|
| 16 |
|
| 17 |
+
## Merge of SDXL Turbo & SDXL DPO
|
| 18 |
+
|
| 19 |
+
</Gallery>
|
| 20 |
+
|
| 21 |
+
Read their licences before using it.
|
| 22 |
+
|
| 23 |
+
## `*.safetensors` for AUTOMATIC1111, ComfyUI, InvokeAI
|
| 24 |
+
[Download *.safetensors file](https://huggingface.co/thibaud/sdxl_dpo_turbo/resolve/main/sdxl_dpo_turbo.safetensors?download=true)
|
| 25 |
+
|
| 26 |
+
## Use it with 🧨 diffusers
|
| 27 |
+
```python
|
| 28 |
+
from diffusers import AutoPipelineForText2Image
|
| 29 |
+
import torch
|
| 30 |
+
|
| 31 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('thibaud/sdxl_dpo_turbo', torch_dtype=torch.float16).to('cuda')
|
| 32 |
+
image = pipeline('A mecha robot in a favela', num_inference_steps=2).images[0]
|
| 33 |
+
```
|
dpo_turbo_robot.jpeg
ADDED
|