h1t commited on
Commit
bc9726e
1 Parent(s): a7d53b5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -21
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
- <Gallery />
21
-
22
- ## Model description
23
 
24
  Official SD21(base) Model of the paper [Trajectory Consistency Distillation](https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2402.19159).
25
 
@@ -27,7 +17,7 @@ For more usage please found at [Project Page](https:&#x2F;&#x2F;huggingface.co&#
27
 
28
  Here is a simple example:
29
 
30
- &#x60;&#x60;&#x60;python
31
  import torch
32
  from diffusers import StableDiffusionPipeline, TCDScheduler
33
 
@@ -53,13 +43,6 @@ image &#x3D; pipe(
53
  eta&#x3D;0.3,
54
  generator&#x3D;torch.Generator(device&#x3D;device).manual_seed(0),
55
  ).images[0]
 
56
 
57
- &#x60;&#x60;&#x60;
58
  ![sd21_base.png](https:&#x2F;&#x2F;cdn-uploads.huggingface.co&#x2F;production&#x2F;uploads&#x2F;630b77f68b327c7b8b98c409&#x2F;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:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;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&#x3D;0.3,
44
  generator&#x3D;torch.Generator(device&#x3D;device).manual_seed(0),
45
  ).images[0]
46
+ ```
47
 
 
48
  ![sd21_base.png](https:&#x2F;&#x2F;cdn-uploads.huggingface.co&#x2F;production&#x2F;uploads&#x2F;630b77f68b327c7b8b98c409&#x2F;ifzBOlPA7E4IKkysMpelC.png)