chenlei
commited on
Commit
·
203924b
1
Parent(s):
11d1b0c
update
Browse files- .gitattributes +1 -0
- README.md +11 -0
- ootd/inference_ootd_hd.py +3 -3
- requirements.txt +5 -1
.gitattributes
CHANGED
@@ -35,3 +35,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
*.png filter=lfs diff=lfs merge=lfs -text
|
37 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
|
|
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
*.png filter=lfs diff=lfs merge=lfs -text
|
37 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
38 |
+
checkpoints/ootd/vae/diffusion_pytorch_model.bin filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# OOTDiffusion
|
2 |
This repository is the official implementation of OOTDiffusion
|
3 |
|
|
|
1 |
+
---
|
2 |
+
title: OOTDiffusion Try-On
|
3 |
+
emoji: 👗
|
4 |
+
colorFrom: purple
|
5 |
+
colorTo: pink
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 4.16.0
|
8 |
+
app_file: ./run/gradio_ootd.py
|
9 |
+
pinned: false
|
10 |
+
---
|
11 |
+
|
12 |
# OOTDiffusion
|
13 |
This repository is the official implementation of OOTDiffusion
|
14 |
|
ootd/inference_ootd_hd.py
CHANGED
@@ -25,9 +25,9 @@ from transformers import AutoProcessor, CLIPVisionModelWithProjection
|
|
25 |
from transformers import CLIPTextModel, CLIPTokenizer
|
26 |
|
27 |
VIT_PATH = "../checkpoints/clip-vit-large-patch14"
|
28 |
-
VAE_PATH = "
|
29 |
-
UNET_PATH = "
|
30 |
-
MODEL_PATH = "
|
31 |
|
32 |
class OOTDiffusionHD:
|
33 |
|
|
|
25 |
from transformers import CLIPTextModel, CLIPTokenizer
|
26 |
|
27 |
VIT_PATH = "../checkpoints/clip-vit-large-patch14"
|
28 |
+
VAE_PATH = "/home/user/app/checkpoints/ootd"
|
29 |
+
UNET_PATH = "/home/user/app/checkpoints/ootd/ootd_hd/checkpoint-36000"
|
30 |
+
MODEL_PATH = "/home/user/app/checkpoints/ootd"
|
31 |
|
32 |
class OOTDiffusionHD:
|
33 |
|
requirements.txt
CHANGED
@@ -11,4 +11,8 @@ tqdm==4.64.1
|
|
11 |
gradio==4.16.0
|
12 |
config==0.5.1
|
13 |
einops==0.7.0
|
14 |
-
onnxruntime==1.16.2
|
|
|
|
|
|
|
|
|
|
11 |
gradio==4.16.0
|
12 |
config==0.5.1
|
13 |
einops==0.7.0
|
14 |
+
onnxruntime==1.16.2
|
15 |
+
huggingface_hub==0.25.0
|
16 |
+
torchvision==0.14.0
|
17 |
+
torch
|
18 |
+
basicsr
|