multimodalart HF staff commited on
Commit
c57c950
1 Parent(s): a8dacd6

Glow up the model card

Browse files
Files changed (1) hide show
  1. README.md +14 -2
README.md CHANGED
@@ -1,3 +1,15 @@
1
- Merge of SDXL Turbo & SDXL DPO
2
 
3
- Read their licences before using it.
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Merge of SDXL Turbo & SDXL DPO
2
 
3
+ Read their licences before using it.
4
+
5
+ ## `*.safetensors` for AUTOMATIC1111, ComfyUI, InvokeAI
6
+ [Download *.safetensors file](https://huggingface.co/thibaud/sdxl_dpo_turbo/resolve/main/sdxl_dpo_turbo.safetensors?download=true)
7
+
8
+ ## Use it with 🧨 diffusers
9
+ ```python
10
+ from diffusers import AutoPipelineForText2Image
11
+ import torch
12
+
13
+ pipeline = AutoPipelineForText2Image.from_pretrained('thibaud/sdxl_dpo_turbo', torch_dtype=torch.float16).to('cuda')
14
+ image = pipeline('A mecha robot in a favela', num_inference_steps=2).images[0]
15
+ ```