Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +28 -51
requirements.txt
CHANGED
@@ -1,60 +1,37 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
|
|
|
|
4 |
transformers>=4.30.0
|
5 |
diffusers>=0.19.0
|
6 |
-
accelerate>=0.
|
7 |
-
huggingface-hub>=0.13.0
|
8 |
safetensors
|
|
|
9 |
|
10 |
-
#
|
11 |
-
|
12 |
-
|
13 |
-
torch>=2.0.0
|
14 |
-
torchvision>=0.15.0
|
15 |
-
torchaudio>=2.0.0
|
16 |
-
|
17 |
-
# =========================
|
18 |
-
# Gradio UI & web server
|
19 |
-
# =========================
|
20 |
-
gradio>=3.35.0
|
21 |
-
fastapi>=0.95.0
|
22 |
-
uvicorn>=0.22.0
|
23 |
-
python-multipart>=0.0.6
|
24 |
|
25 |
-
#
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
gTTS>=2.3.2
|
32 |
-
webrtcvad>=2.0.10
|
33 |
-
pydub>=0.25.1
|
34 |
|
35 |
-
#
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
imageio-ffmpeg>=0.4.8
|
42 |
-
moviepy>=1.0.3
|
43 |
|
44 |
-
#
|
45 |
-
|
46 |
-
|
47 |
-
pymupdf>=1.22.0
|
48 |
-
python-docx>=0.8.11
|
49 |
-
pdf2image>=1.16.0
|
50 |
|
51 |
-
#
|
52 |
-
# Utilities & NLP helpers
|
53 |
-
# =========================
|
54 |
-
numpy>=1.24.0
|
55 |
-
tqdm
|
56 |
langdetect
|
57 |
-
|
58 |
-
|
59 |
-
tokenizers
|
60 |
-
requests
|
|
|
1 |
+
# UI
|
2 |
+
gradio>=3.25
|
3 |
+
|
4 |
+
# Core ML
|
5 |
+
torch
|
6 |
transformers>=4.30.0
|
7 |
diffusers>=0.19.0
|
8 |
+
accelerate>=0.21.0
|
|
|
9 |
safetensors
|
10 |
+
huggingface-hub>=0.13.4
|
11 |
|
12 |
+
# Tokenizers / translation
|
13 |
+
sentencepiece
|
14 |
+
tokenizers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
# Audio / speech
|
17 |
+
librosa>=0.9.2
|
18 |
+
soundfile
|
19 |
+
SpeechRecognition
|
20 |
+
gTTS
|
21 |
+
webrtcvad
|
|
|
|
|
|
|
22 |
|
23 |
+
# Images & video
|
24 |
+
Pillow
|
25 |
+
imageio
|
26 |
+
imageio-ffmpeg
|
27 |
+
moviepy
|
28 |
+
opencv-python-headless
|
|
|
|
|
29 |
|
30 |
+
# Documents / files
|
31 |
+
PyMuPDF
|
32 |
+
python-docx
|
|
|
|
|
|
|
33 |
|
34 |
+
# Utilities
|
|
|
|
|
|
|
|
|
35 |
langdetect
|
36 |
+
numpy
|
37 |
+
scipy
|
|
|
|