Spaces:
Running
on
Zero
Running
on
Zero
Update requirements.txt
Browse files- requirements.txt +50 -18
requirements.txt
CHANGED
@@ -1,21 +1,53 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
ffmpeg-python
|
10 |
-
tqdm
|
11 |
-
einops
|
12 |
-
transformers
|
13 |
-
accelerate
|
14 |
-
loguru
|
15 |
diffusers
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
pyyaml
|
|
|
19 |
easydict
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core ML dependencies
|
2 |
+
torch>=2.0.0
|
3 |
+
torchvision>=0.15.0
|
4 |
+
torchaudio>=2.0.0
|
5 |
+
numpy==1.26.4
|
6 |
+
scipy
|
7 |
+
|
8 |
+
# Deep Learning frameworks
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
diffusers
|
10 |
+
timm
|
11 |
+
accelerate
|
12 |
+
|
13 |
+
# Transformers and NLP
|
14 |
+
git+https://github.com/huggingface/[email protected]
|
15 |
+
sentencepiece
|
16 |
+
huggingface_hub
|
17 |
+
|
18 |
+
# Audio processing
|
19 |
+
git+https://github.com/descriptinc/audiotools
|
20 |
+
|
21 |
+
# Video/Image processing
|
22 |
+
pillow
|
23 |
+
av
|
24 |
+
einops
|
25 |
+
|
26 |
+
# Configuration and utilities
|
27 |
pyyaml
|
28 |
+
omegaconf
|
29 |
easydict
|
30 |
+
loguru
|
31 |
+
tqdm
|
32 |
+
setuptools
|
33 |
+
|
34 |
+
# Data handling
|
35 |
+
pandas
|
36 |
+
pyarrow
|
37 |
+
|
38 |
+
# Web interface
|
39 |
+
gradio>=4.44.0
|
40 |
+
spaces>=0.26.1
|
41 |
+
|
42 |
+
# Network
|
43 |
+
urllib3==2.4.0
|
44 |
+
|
45 |
+
# Development dependencies (optional)
|
46 |
+
black>=23.0.0
|
47 |
+
isort>=5.12.0
|
48 |
+
flake8>=6.0.0
|
49 |
+
mypy>=1.3.0
|
50 |
+
pre-commit>=3.0.0
|
51 |
+
|
52 |
+
# Extra (used in app.py)
|
53 |
+
requests
|