Spaces:
Sleeping
Sleeping
Fnu Mahnoor commited on
Commit ·
0662eb3
1
Parent(s): d125bda
fix req.txt
Browse files- requirements.txt +17 -38
requirements.txt
CHANGED
|
@@ -1,58 +1,37 @@
|
|
| 1 |
# -------------------------------
|
| 2 |
-
#
|
| 3 |
# -------------------------------
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
# -------------------------------
|
| 8 |
-
# Core AI & Transcription (Pinned for CUDA 11.8)
|
| 9 |
-
# -------------------------------
|
| 10 |
-
# We pin CTranslate2 to 3.24.0 because it's the last stable version
|
| 11 |
-
# that doesn't force a CUDA 12 dependency.
|
| 12 |
faster-whisper
|
| 13 |
ctranslate2
|
| 14 |
-
nvidia-cublas-cu11
|
| 15 |
-
nvidia-cudnn-cu11
|
| 16 |
-
torch>=2.0.0
|
| 17 |
-
torchvision
|
| 18 |
-
torchaudio
|
| 19 |
|
| 20 |
# -------------------------------
|
| 21 |
-
# Audio Processing
|
| 22 |
# -------------------------------
|
| 23 |
-
pyaudio
|
| 24 |
-
sounddevice
|
| 25 |
soundfile
|
| 26 |
librosa
|
| 27 |
-
matplotlib
|
| 28 |
-
yt-dlp
|
| 29 |
ffmpeg-python
|
|
|
|
| 30 |
|
| 31 |
# -------------------------------
|
| 32 |
-
#
|
| 33 |
# -------------------------------
|
| 34 |
-
|
| 35 |
tqdm
|
| 36 |
-
|
|
|
|
|
|
|
| 37 |
|
| 38 |
# -------------------------------
|
| 39 |
-
#
|
| 40 |
# -------------------------------
|
| 41 |
-
transformers
|
| 42 |
-
accelerate
|
| 43 |
-
|
| 44 |
-
einops>=0.7.0
|
| 45 |
-
sentencepiece>=0.1.98
|
| 46 |
-
pyannote.audio
|
| 47 |
-
silero-vad
|
| 48 |
|
| 49 |
# -------------------------------
|
| 50 |
-
#
|
| 51 |
# -------------------------------
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
python-pptx>=0.6.21
|
| 55 |
-
beautifulsoup4==4.12.2
|
| 56 |
-
requests>=2.31.0
|
| 57 |
-
nltk>=3.8
|
| 58 |
-
numpy>=1.24.0
|
|
|
|
| 1 |
# -------------------------------
|
| 2 |
+
# Core ML & Transcription
|
| 3 |
# -------------------------------
|
| 4 |
+
torch
|
| 5 |
+
torchaudio
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
faster-whisper
|
| 7 |
ctranslate2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
# -------------------------------
|
| 10 |
+
# Audio Processing
|
| 11 |
# -------------------------------
|
|
|
|
|
|
|
| 12 |
soundfile
|
| 13 |
librosa
|
|
|
|
|
|
|
| 14 |
ffmpeg-python
|
| 15 |
+
julius
|
| 16 |
|
| 17 |
# -------------------------------
|
| 18 |
+
# Utilities
|
| 19 |
# -------------------------------
|
| 20 |
+
numpy
|
| 21 |
tqdm
|
| 22 |
+
python-dotenv
|
| 23 |
+
requests
|
| 24 |
+
nltk
|
| 25 |
|
| 26 |
# -------------------------------
|
| 27 |
+
# Hugging Face & Transformers
|
| 28 |
# -------------------------------
|
| 29 |
+
transformers
|
| 30 |
+
accelerate
|
| 31 |
+
huggingface_hub
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
# -------------------------------
|
| 34 |
+
# Optional (CPU-safe only)
|
| 35 |
# -------------------------------
|
| 36 |
+
einops
|
| 37 |
+
sentencepiece
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|