Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +24 -9
requirements.txt
CHANGED
@@ -1,17 +1,32 @@
|
|
1 |
-
#
|
|
|
|
|
|
|
2 |
gradio==4.44.0
|
|
|
|
|
|
|
3 |
moviepy==1.0.3
|
|
|
|
|
|
|
|
|
4 |
edge-tts==6.1.10
|
5 |
-
|
|
|
|
|
6 |
transformers==4.44.2
|
7 |
torch==2.4.1
|
8 |
-
|
9 |
-
|
|
|
10 |
|
11 |
-
#
|
12 |
-
|
13 |
scikit-learn==1.5.0
|
|
|
14 |
|
15 |
-
#
|
16 |
-
|
17 |
-
tqdm==4.66.4
|
|
|
|
1 |
+
# requirements.txt para Hugging Face Spaces
|
2 |
+
# Versiones probadas para evitar conflictos
|
3 |
+
|
4 |
+
# Core
|
5 |
gradio==4.44.0
|
6 |
+
python-dotenv==1.0.0
|
7 |
+
|
8 |
+
# Procesamiento de video
|
9 |
moviepy==1.0.3
|
10 |
+
imageio==2.34.1
|
11 |
+
imageio-ffmpeg==0.4.9
|
12 |
+
|
13 |
+
# Audio
|
14 |
edge-tts==6.1.10
|
15 |
+
pydub==0.25.1
|
16 |
+
|
17 |
+
# Modelos de IA
|
18 |
transformers==4.44.2
|
19 |
torch==2.4.1
|
20 |
+
sentencepiece==0.2.0 # ¡CRÍTICO para tokenizadores MBART!
|
21 |
+
tokenizers==0.19.1
|
22 |
+
sentence-transformers==2.7.0
|
23 |
|
24 |
+
# Matemáticas/ML
|
25 |
+
numpy==1.26.4
|
26 |
scikit-learn==1.5.0
|
27 |
+
scipy==1.13.0
|
28 |
|
29 |
+
# Utilidades
|
30 |
+
requests==2.32.3
|
31 |
+
tqdm==4.66.4
|
32 |
+
pillow==10.4.0
|