Update README.md
Browse files
README.md
CHANGED
@@ -4,22 +4,12 @@ tags:
|
|
4 |
- stable-diffusion
|
5 |
- lora
|
6 |
- diffusers
|
7 |
-
- template:sd-lora
|
8 |
-
widget:
|
9 |
-
- text: >-
|
10 |
-
Beautiful woman, bubblegum pink, lemon yellow, minty blue, futuristic,
|
11 |
-
high-detail, epic composition, watercolor.
|
12 |
-
output:
|
13 |
-
url: images/sd21_base.png
|
14 |
base_model: stabilityai/stable-diffusion-2-1-base
|
15 |
-
instance_prompt: null
|
16 |
license: mit
|
|
|
17 |
---
|
18 |
-
# TCD-SD21-LoRA
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
## Model description
|
23 |
|
24 |
Official SD21(base) Model of the paper [Trajectory Consistency Distillation](https://arxiv.org/abs/2402.19159).
|
25 |
|
@@ -27,7 +17,7 @@ For more usage please found at [Project Page](https://huggingface.co&#
|
|
27 |
|
28 |
Here is a simple example:
|
29 |
|
30 |
-
|
31 |
import torch
|
32 |
from diffusers import StableDiffusionPipeline, TCDScheduler
|
33 |
|
@@ -53,13 +43,6 @@ image = pipe(
|
|
53 |
eta=0.3,
|
54 |
generator=torch.Generator(device=device).manual_seed(0),
|
55 |
).images[0]
|
|
|
56 |
|
57 |
-
```
|
58 |
![sd21_base.png](https://cdn-uploads.huggingface.co/production/uploads/630b77f68b327c7b8b98c409/ifzBOlPA7E4IKkysMpelC.png)
|
59 |
-
|
60 |
-
|
61 |
-
## Download model
|
62 |
-
|
63 |
-
Weights for this model are available in Safetensors format.
|
64 |
-
|
65 |
-
[Download](/h1t/TCD-SD21-base-LoRA/tree/main) them in the Files & versions tab.
|
|
|
4 |
- stable-diffusion
|
5 |
- lora
|
6 |
- diffusers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
base_model: stabilityai/stable-diffusion-2-1-base
|
|
|
8 |
license: mit
|
9 |
+
library_name: diffusers
|
10 |
---
|
|
|
11 |
|
12 |
+
# Model description
|
|
|
|
|
13 |
|
14 |
Official SD21(base) Model of the paper [Trajectory Consistency Distillation](https://arxiv.org/abs/2402.19159).
|
15 |
|
|
|
17 |
|
18 |
Here is a simple example:
|
19 |
|
20 |
+
```python
|
21 |
import torch
|
22 |
from diffusers import StableDiffusionPipeline, TCDScheduler
|
23 |
|
|
|
43 |
eta=0.3,
|
44 |
generator=torch.Generator(device=device).manual_seed(0),
|
45 |
).images[0]
|
46 |
+
```
|
47 |
|
|
|
48 |
![sd21_base.png](https://cdn-uploads.huggingface.co/production/uploads/630b77f68b327c7b8b98c409/ifzBOlPA7E4IKkysMpelC.png)
|
|
|
|
|
|
|
|
|
|
|
|
|
|