Update requirements.txt
Browse files- requirements.txt +61 -4
requirements.txt
CHANGED
@@ -1,4 +1,61 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Audio Separator PRO - Requirements
|
2 |
+
# Proyecto de separaci贸n de audio con IA usando Demucs v4
|
3 |
+
|
4 |
+
# ===== CORE AI MODELS =====
|
5 |
+
# Demucs - Estado del arte en separaci贸n de audio
|
6 |
+
demucs>=4.0.0
|
7 |
+
torch>=2.0.0
|
8 |
+
torchaudio>=2.0.0
|
9 |
+
torchvision>=0.15.0
|
10 |
+
|
11 |
+
# ===== AUDIO PROCESSING =====
|
12 |
+
# Librer铆as fundamentales para procesamiento de audio
|
13 |
+
librosa>=0.10.0
|
14 |
+
soundfile>=0.12.0
|
15 |
+
numpy>=1.21.0
|
16 |
+
scipy>=1.9.0
|
17 |
+
|
18 |
+
# Audio I/O adicional
|
19 |
+
pydub>=0.25.0
|
20 |
+
ffmpeg-python>=0.2.0
|
21 |
+
|
22 |
+
# ===== WEB INTERFACE =====
|
23 |
+
# Gradio para la interfaz web
|
24 |
+
gradio>=4.0.0
|
25 |
+
|
26 |
+
# ===== UTILITIES =====
|
27 |
+
# Utilidades generales
|
28 |
+
pathlib2>=2.3.0
|
29 |
+
tqdm>=4.64.0
|
30 |
+
click>=8.0.0
|
31 |
+
|
32 |
+
# ===== SCIENTIFIC COMPUTING =====
|
33 |
+
# Para computaci贸n cient铆fica y arrays
|
34 |
+
pandas>=1.5.0
|
35 |
+
matplotlib>=3.5.0
|
36 |
+
|
37 |
+
# ===== OPTIONAL ENHANCEMENTS =====
|
38 |
+
# Para mejor rendimiento (opcional)
|
39 |
+
numba>=0.56.0
|
40 |
+
resampy>=0.4.0
|
41 |
+
|
42 |
+
# ===== GPU ACCELERATION (OPCIONAL) =====
|
43 |
+
# Descomenta las siguientes l铆neas si tienes GPU NVIDIA
|
44 |
+
# torch>=2.0.0+cu118 --index-url https://download.pytorch.org/whl/cu118
|
45 |
+
# torchaudio>=2.0.0+cu118 --index-url https://download.pytorch.org/whl/cu118
|
46 |
+
|
47 |
+
# ===== ALTERNATIVE MODELS (OPCIONAL) =====
|
48 |
+
# Spleeter como modelo alternativo
|
49 |
+
# tensorflow>=2.10.0
|
50 |
+
# spleeter>=2.3.0
|
51 |
+
|
52 |
+
# ===== DEVELOPMENT (OPCIONAL) =====
|
53 |
+
# Para desarrollo y debugging
|
54 |
+
# jupyter>=1.0.0
|
55 |
+
# ipython>=8.0.0
|
56 |
+
|
57 |
+
# ===== SYSTEM REQUIREMENTS =====
|
58 |
+
# Python >= 3.8 requerido
|
59 |
+
# RAM: 8GB m铆nimo, 16GB recomendado
|
60 |
+
# GPU: NVIDIA con CUDA (opcional pero recomendado)
|
61 |
+
# Espacio: 2GB para modelos preentrenados
|