Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +28 -25
requirements.txt
CHANGED
@@ -1,38 +1,41 @@
|
|
1 |
-
# UI
|
2 |
-
gradio>=
|
3 |
-
fastapi>=0.95.0
|
4 |
|
5 |
-
#
|
6 |
torch
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
10 |
safetensors
|
11 |
-
|
12 |
sentencepiece
|
13 |
-
|
|
|
14 |
|
15 |
-
# Audio
|
16 |
-
librosa>=0.
|
|
|
|
|
17 |
soundfile
|
18 |
-
SpeechRecognition
|
19 |
gTTS
|
|
|
20 |
webrtcvad
|
21 |
|
22 |
-
#
|
23 |
Pillow
|
24 |
-
imageio
|
25 |
-
imageio-ffmpeg
|
26 |
-
moviepy
|
27 |
opencv-python-headless
|
28 |
|
29 |
-
# Documents
|
30 |
-
PyMuPDF
|
31 |
-
python-docx
|
32 |
-
|
33 |
-
# Utilities
|
34 |
langdetect
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
decorator
|
|
|
1 |
+
# --- Core runtime / UI ---
|
2 |
+
gradio>=4.36.0
|
|
|
3 |
|
4 |
+
# --- PyTorch stack (CPU by default; switch Space to GPU for SD speed) ---
|
5 |
torch
|
6 |
+
torchvision
|
7 |
+
torchaudio
|
8 |
+
|
9 |
+
# --- HF ecosystem / modeling ---
|
10 |
+
transformers>=4.41.0
|
11 |
+
diffusers>=0.28.0
|
12 |
+
accelerate
|
13 |
safetensors
|
14 |
+
huggingface_hub>=0.23.0
|
15 |
sentencepiece
|
16 |
+
timm
|
17 |
+
scipy
|
18 |
|
19 |
+
# --- Audio ---
|
20 |
+
librosa>=0.10.2
|
21 |
+
numba
|
22 |
+
llvmlite
|
23 |
soundfile
|
|
|
24 |
gTTS
|
25 |
+
SpeechRecognition
|
26 |
webrtcvad
|
27 |
|
28 |
+
# --- Image / Video ---
|
29 |
Pillow
|
30 |
+
imageio
|
31 |
+
imageio-ffmpeg
|
32 |
+
moviepy
|
33 |
opencv-python-headless
|
34 |
|
35 |
+
# --- Documents ---
|
36 |
+
PyMuPDF # provides the 'fitz' import
|
37 |
+
python-docx # you use `import docx` for .docx support
|
|
|
|
|
38 |
langdetect
|
39 |
+
|
40 |
+
# --- Misc / helpers ---
|
41 |
+
python-multipart
|
|