Spaces:
Running
on
Zero
Running
on
Zero
add
Browse files- README.md +1 -0
- requirements.txt +6 -80
README.md
CHANGED
@@ -11,6 +11,7 @@ Also inspired by [In-Context LoRA](https://arxiv.org/abs/2410.23775) for prompt
|
|
11 |
(2024/11/25):
|
12 |
- Released lora weights. Lora weights achieved FID: `6.0675811767578125` on VITON-HD dataset. Test configuration: scale 30, step 30.
|
13 |
- Revise gradio demo. Added huggingface spaces support.
|
|
|
14 |
|
15 |
(2024/11/24):
|
16 |
- Released FID score and gradio demo
|
|
|
11 |
(2024/11/25):
|
12 |
- Released lora weights. Lora weights achieved FID: `6.0675811767578125` on VITON-HD dataset. Test configuration: scale 30, step 30.
|
13 |
- Revise gradio demo. Added huggingface spaces support.
|
14 |
+
- Clean up the requirements.txt.
|
15 |
|
16 |
(2024/11/24):
|
17 |
- Released FID score and gradio demo
|
requirements.txt
CHANGED
@@ -1,87 +1,13 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
aiohttp==3.10.3
|
4 |
-
aiosignal==1.3.1
|
5 |
-
annotated-types==0.7.0
|
6 |
-
antlr4-python3-runtime==4.9.3
|
7 |
-
attrs==24.2.0
|
8 |
-
certifi==2024.7.4
|
9 |
-
charset-normalizer==3.3.2
|
10 |
-
click==8.1.7
|
11 |
-
coloredlogs==15.0.1
|
12 |
-
contourpy==1.2.1
|
13 |
-
cycler==0.12.1
|
14 |
-
datasets==2.21.0
|
15 |
-
deepspeed==0.14.4
|
16 |
-
dill==0.3.8
|
17 |
-
docker-pycreds==0.4.0
|
18 |
-
einops==0.8.0
|
19 |
-
filelock==3.15.4
|
20 |
-
flatbuffers==24.3.25
|
21 |
-
fonttools==4.53.1
|
22 |
-
frozenlist==1.4.1
|
23 |
-
fsspec==2024.6.1
|
24 |
-
gitdb==4.0.11
|
25 |
-
GitPython==3.1.43
|
26 |
-
hjson==3.1.0
|
27 |
-
humanfriendly==10.0
|
28 |
-
idna==3.7
|
29 |
-
importlib_metadata==8.2.0
|
30 |
-
Jinja2==3.1.4
|
31 |
-
kiwisolver==1.4.5
|
32 |
-
MarkupSafe==2.1.5
|
33 |
-
matplotlib==3.9.2
|
34 |
-
mpmath==1.3.0
|
35 |
-
multidict==6.0.5
|
36 |
-
multiprocess==0.70.16
|
37 |
-
networkx==3.3
|
38 |
-
ninja==1.11.1.1
|
39 |
-
numpy==1.26.4
|
40 |
-
omegaconf==2.3.0
|
41 |
-
onnxruntime-gpu==1.18.1
|
42 |
-
opencv-python==4.10.0.84
|
43 |
-
optimum-quanto==0.2.4
|
44 |
-
packaging==24.1
|
45 |
-
pandas==2.2.2
|
46 |
-
pillow==10.4.0
|
47 |
-
platformdirs==4.2.2
|
48 |
-
protobuf==5.27.3
|
49 |
-
py-cpuinfo==9.0.0
|
50 |
-
pyarrow==17.0.0
|
51 |
-
pydantic==2.8.2
|
52 |
-
pydantic_core==2.20.1
|
53 |
-
pyparsing==3.1.2
|
54 |
-
python-dateutil==2.9.0.post0
|
55 |
-
pytz==2024.1
|
56 |
-
PyYAML==6.0.2
|
57 |
-
regex==2024.7.24
|
58 |
-
requests==2.32.3
|
59 |
-
safetensors==0.4.4
|
60 |
-
sentencepiece==0.2.0
|
61 |
-
sentry-sdk==2.13.0
|
62 |
-
setproctitle==1.3.3
|
63 |
-
six==1.16.0
|
64 |
-
smmap==5.0.1
|
65 |
-
sympy==1.13.2
|
66 |
-
timm==1.0.8
|
67 |
-
tokenizers==0.19.1
|
68 |
torch==2.4.0
|
69 |
torchvision==0.19.0
|
70 |
tqdm==4.66.5
|
71 |
transformers==4.43.3
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
wandb==0.17.6
|
77 |
-
xxhash==3.4.1
|
78 |
-
yarl==1.9.4
|
79 |
-
zipp==3.20.0
|
80 |
-
peft==0.13.2
|
81 |
-
bitsandbytes==0.44.1
|
82 |
-
gradio==5.6.0
|
83 |
-
gradio_client==1.4.3
|
84 |
-
prodigyopt
|
85 |
huggingface-hub
|
86 |
spaces
|
87 |
git+https://github.com/huggingface/diffusers.git
|
|
|
1 |
+
gradio==5.6.0
|
2 |
+
gradio_client==1.4.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
torch==2.4.0
|
4 |
torchvision==0.19.0
|
5 |
tqdm==4.66.5
|
6 |
transformers==4.43.3
|
7 |
+
numpy==1.26.4
|
8 |
+
accelerate==1.1.1
|
9 |
+
sentencepiece==0.2.0
|
10 |
+
protobuf==5.27.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
huggingface-hub
|
12 |
spaces
|
13 |
git+https://github.com/huggingface/diffusers.git
|