File size: 856 Bytes
d89cc38 06d17ac d89cc38 06d17ac d89cc38 06d17ac fb56cf0 06d17ac d89cc38 a8dacd6 d89cc38 6f0b5a7 d89cc38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
---
license: other
pipeline_tag: text-to-image
tags:
- text-to-image
- turbo
- stable-diffusion
- stable-diffusion-xl
- dpo
widget:
- text: 'rusty robot cartoon'
output:
url: dpo_turbo_robot.jpeg
inference:
parameters:
num_inference_steps: 8
---
## Merge of SDXL Turbo & SDXL DPO
<Gallery />
Read their licences before using it.
## `*.safetensors` for AUTOMATIC1111, ComfyUI, InvokeAI
[Download *.safetensors file](https://huggingface.co/thibaud/sdxl_dpo_turbo/resolve/main/sdxl_dpo_turbo.safetensors?download=true)
## Use it with 🧨 diffusers
```python
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('thibaud/sdxl_dpo_turbo', torch_dtype=torch.float16).to('cuda')
image = pipeline('A mecha robot in a favela', num_inference_steps=2).images[0]
``` |