Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +27 -24
requirements.txt
CHANGED
@@ -1,43 +1,46 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
|
7 |
-
#
|
8 |
-
|
9 |
-
huggingface-hub==0.19.0
|
10 |
-
transformers==4.30.0
|
11 |
diffusers==0.19.0
|
12 |
-
accelerate==0.
|
|
|
|
|
|
|
13 |
sentencepiece==0.1.99
|
14 |
|
15 |
-
#
|
|
|
16 |
soundfile==0.12.1
|
17 |
-
|
18 |
gTTS==2.3.2
|
19 |
-
SpeechRecognition==3.8.1
|
20 |
-
pydub==0.25.1
|
21 |
webrtcvad==2.0.10
|
|
|
22 |
|
23 |
-
#
|
24 |
-
Pillow==
|
25 |
-
|
|
|
26 |
imageio-ffmpeg==0.4.8
|
27 |
moviepy==1.0.3
|
28 |
-
opencv-python-headless==4.7.0.72
|
29 |
|
30 |
-
#
|
31 |
pymupdf==1.22.5
|
32 |
python-docx==1.1.0
|
33 |
pdf2image==1.17.0
|
34 |
|
35 |
-
#
|
36 |
-
numpy==1.
|
37 |
tqdm==4.65.0
|
38 |
-
requests==2.28.2
|
39 |
langdetect==1.0.9
|
40 |
protobuf==3.20.3
|
41 |
|
42 |
-
#
|
43 |
-
gradio==3.
|
|
|
|
|
|
|
|
1 |
+
# Core Requirements
|
2 |
+
--index-url https://download.pytorch.org/whl/cu118
|
3 |
+
torch==2.0.1+cu118
|
4 |
+
torchvision==0.15.2+cu118
|
5 |
+
torchaudio==2.0.2+cu118
|
6 |
|
7 |
+
# Hugging Face Ecosystem
|
8 |
+
transformers==4.30.2
|
|
|
|
|
9 |
diffusers==0.19.0
|
10 |
+
accelerate==0.21.0
|
11 |
+
huggingface-hub==0.19.0
|
12 |
+
safetensors==0.3.1
|
13 |
+
tokenizers==0.13.3
|
14 |
sentencepiece==0.1.99
|
15 |
|
16 |
+
# Audio Processing
|
17 |
+
librosa==0.10.0
|
18 |
soundfile==0.12.1
|
19 |
+
SpeechRecognition==3.10.0
|
20 |
gTTS==2.3.2
|
|
|
|
|
21 |
webrtcvad==2.0.10
|
22 |
+
pydub==0.25.1
|
23 |
|
24 |
+
# Image/Video Processing
|
25 |
+
Pillow==10.0.0
|
26 |
+
opencv-python-headless==4.7.0.72
|
27 |
+
imageio==2.31.1
|
28 |
imageio-ffmpeg==0.4.8
|
29 |
moviepy==1.0.3
|
|
|
30 |
|
31 |
+
# Document Processing
|
32 |
pymupdf==1.22.5
|
33 |
python-docx==1.1.0
|
34 |
pdf2image==1.17.0
|
35 |
|
36 |
+
# Utilities
|
37 |
+
numpy==1.24.3
|
38 |
tqdm==4.65.0
|
|
|
39 |
langdetect==1.0.9
|
40 |
protobuf==3.20.3
|
41 |
|
42 |
+
# Gradio Interface
|
43 |
+
gradio==3.35.2
|
44 |
+
fastapi==0.95.2
|
45 |
+
uvicorn==0.22.0
|
46 |
+
python-multipart==0.0.6
|