Spaces:
Configuration error
Configuration error
Rimjhim Mittal commited on
Commit Β·
1bb9616
1
Parent(s): 8c337cd
finalfinal
Browse files- README.md +8 -7
- requirements.txt +18 -0
README.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 4.
|
| 8 |
-
app_file:
|
| 9 |
pinned: false
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: OOTDiffusion
|
| 3 |
+
emoji: π₯Όππ
|
| 4 |
+
colorFrom: yellow
|
| 5 |
+
colorTo: pink
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 4.16.0
|
| 8 |
+
app_file: ./run/gradio_ootd.py
|
| 9 |
pinned: false
|
| 10 |
+
license: cc-by-nc-sa-4.0
|
| 11 |
---
|
| 12 |
|
| 13 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
requirements.txt
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch==2.0.1
|
| 2 |
+
torchvision==0.15.2
|
| 3 |
+
torchaudio==2.0.2
|
| 4 |
+
numpy==1.24.4
|
| 5 |
+
scipy==1.10.1
|
| 6 |
+
scikit-image==0.21.0
|
| 7 |
+
opencv-python==4.7.0.72
|
| 8 |
+
pillow==9.4.0
|
| 9 |
+
diffusers==0.24.0
|
| 10 |
+
transformers==4.36.2
|
| 11 |
+
accelerate==0.26.1
|
| 12 |
+
matplotlib==3.7.4
|
| 13 |
+
tqdm==4.64.1
|
| 14 |
+
gradio==4.16.0
|
| 15 |
+
config==0.5.1
|
| 16 |
+
einops==0.7.0
|
| 17 |
+
onnxruntime==1.16.2
|
| 18 |
+
basicsr
|