Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +58 -0
requirements.txt
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ZenVision AI Subtitle Generator - Requirements
|
| 2 |
+
# Modelo avanzado de 3GB+ con múltiples tecnologías de IA
|
| 3 |
+
|
| 4 |
+
# Core ML/AI Libraries
|
| 5 |
+
torch>=2.0.0
|
| 6 |
+
torchaudio>=2.0.0
|
| 7 |
+
transformers>=4.30.0
|
| 8 |
+
tensorflow>=2.13.0
|
| 9 |
+
scikit-learn>=1.3.0
|
| 10 |
+
|
| 11 |
+
# Audio/Video Processing
|
| 12 |
+
openai-whisper>=20230918
|
| 13 |
+
moviepy>=1.0.3
|
| 14 |
+
opencv-python>=4.8.0
|
| 15 |
+
librosa>=0.10.0
|
| 16 |
+
scipy>=1.11.0
|
| 17 |
+
|
| 18 |
+
# NLP Libraries
|
| 19 |
+
spacy>=3.6.0
|
| 20 |
+
nltk>=3.8.0
|
| 21 |
+
googletrans==4.0.0rc1
|
| 22 |
+
|
| 23 |
+
# Web Interface
|
| 24 |
+
gradio>=3.40.0
|
| 25 |
+
|
| 26 |
+
# Utility Libraries
|
| 27 |
+
numpy>=1.24.0
|
| 28 |
+
pandas>=2.0.0
|
| 29 |
+
matplotlib>=3.7.0
|
| 30 |
+
seaborn>=0.12.0
|
| 31 |
+
pillow>=10.0.0
|
| 32 |
+
requests>=2.31.0
|
| 33 |
+
tqdm>=4.65.0
|
| 34 |
+
|
| 35 |
+
# Audio Analysis
|
| 36 |
+
pyaudio>=0.2.11
|
| 37 |
+
soundfile>=0.12.0
|
| 38 |
+
webrtcvad>=2.0.10
|
| 39 |
+
|
| 40 |
+
# Video Analysis
|
| 41 |
+
imageio>=2.31.0
|
| 42 |
+
imageio-ffmpeg>=0.4.8
|
| 43 |
+
|
| 44 |
+
# Text Processing
|
| 45 |
+
textblob>=0.17.1
|
| 46 |
+
langdetect>=1.0.9
|
| 47 |
+
python-Levenshtein>=0.21.0
|
| 48 |
+
|
| 49 |
+
# Development Tools
|
| 50 |
+
jupyter>=1.0.0
|
| 51 |
+
ipython>=8.14.0
|
| 52 |
+
black>=23.7.0
|
| 53 |
+
flake8>=6.0.0
|
| 54 |
+
|
| 55 |
+
# System Dependencies (install with system package manager)
|
| 56 |
+
# sudo apt-get install ffmpeg
|
| 57 |
+
# python -m spacy download en_core_web_sm
|
| 58 |
+
# python -m spacy download es_core_news_sm
|