Glow up the model card
#3
by
multimodalart
HF staff
- opened
- 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