Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +47 -15
requirements.txt
CHANGED
@@ -1,15 +1,47 @@
|
|
1 |
-
|
2 |
-
torch
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# PyTorch and related libraries
|
2 |
+
torch==2.2.0
|
3 |
+
torchvision==0.17.0
|
4 |
+
deepspeed==0.13.1
|
5 |
+
accelerate==0.26.1
|
6 |
+
peft==0.4.0
|
7 |
+
timm==1.0.3
|
8 |
+
|
9 |
+
# Hugging Face & NLP
|
10 |
+
transformers==4.40.0
|
11 |
+
tokenizers==0.19.1
|
12 |
+
huggingface_hub==0.23.4
|
13 |
+
sentencepiece==0.1.99
|
14 |
+
|
15 |
+
# Data Processing and I/O
|
16 |
+
numpy==1.24.4
|
17 |
+
decord==0.6.0
|
18 |
+
imageio==2.34.0
|
19 |
+
imageio-ffmpeg==0.4.9
|
20 |
+
moviepy==1.0.3
|
21 |
+
opencv-python==4.6.0.66
|
22 |
+
pysubs2
|
23 |
+
|
24 |
+
# Miscellaneous
|
25 |
+
scikit-learn==1.2.2
|
26 |
+
shortuuid
|
27 |
+
einops==0.6.1
|
28 |
+
einops-exts==0.0.4
|
29 |
+
bitsandbytes==0.43.0
|
30 |
+
pydantic>=2.0
|
31 |
+
markdown2[all]
|
32 |
+
gradio==3.50.0
|
33 |
+
gradio_client==0.6.1
|
34 |
+
httpx==0.24.1
|
35 |
+
requests
|
36 |
+
openai
|
37 |
+
uvicorn
|
38 |
+
fastapi
|
39 |
+
tensorboard
|
40 |
+
wandb
|
41 |
+
tabulate
|
42 |
+
|
43 |
+
# Space Dependencies
|
44 |
+
spaces==0.29.2
|
45 |
+
|
46 |
+
# Optional CUDA for GPU Support
|
47 |
+
--extra-index-url https://download.pytorch.org/whl/cu118
|