Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +39 -40
requirements.txt
CHANGED
@@ -1,46 +1,45 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
6 |
|
7 |
-
#
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
huggingface-hub==0.19.0
|
12 |
-
safetensors==0.3.1
|
13 |
-
tokenizers==0.13.3
|
14 |
-
sentencepiece==0.1.99
|
15 |
|
16 |
-
#
|
17 |
-
|
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 |
-
#
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
30 |
|
31 |
-
#
|
32 |
-
|
33 |
-
python-
|
34 |
-
|
|
|
|
|
35 |
|
36 |
-
#
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
protobuf==3.20.3
|
41 |
|
42 |
-
#
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core ML & HF
|
2 |
+
transformers>=4.30.0
|
3 |
+
diffusers>=0.19.0
|
4 |
+
accelerate>=0.20.0
|
5 |
+
huggingface-hub>=0.13.0
|
6 |
+
safetensors
|
7 |
|
8 |
+
# Torch (leave pip to pick correct wheel for the environment)
|
9 |
+
torch>=2.0.0
|
10 |
+
torchvision>=0.15.0
|
11 |
+
torchaudio>=2.0.0
|
|
|
|
|
|
|
|
|
12 |
|
13 |
+
# Gradio for UI
|
14 |
+
gradio>=3.35.0
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
# Audio
|
17 |
+
librosa>=0.9.2
|
18 |
+
soundfile>=0.12.1
|
19 |
+
SpeechRecognition>=3.8.1
|
20 |
+
gTTS>=2.3.1
|
21 |
+
webrtcvad>=2.0.10
|
22 |
+
pydub>=0.25.1
|
23 |
|
24 |
+
# Image & video
|
25 |
+
Pillow>=9.5.0
|
26 |
+
opencv-python-headless>=4.7.0
|
27 |
+
imageio>=2.31.1
|
28 |
+
imageio-ffmpeg>=0.4.8
|
29 |
+
moviepy>=1.0.3
|
30 |
|
31 |
+
# Documents
|
32 |
+
pymupdf>=1.22.0
|
33 |
+
python-docx>=0.8.11
|
34 |
+
pdf2image>=1.16.0
|
|
|
35 |
|
36 |
+
# Utilities
|
37 |
+
numpy>=1.24.0
|
38 |
+
tqdm
|
39 |
+
langdetect
|
40 |
+
protobuf>=3.20.0
|
41 |
+
huggingface-hub
|
42 |
+
|
43 |
+
# Optional but often useful
|
44 |
+
sentencepiece
|
45 |
+
tokenizers
|