Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +16 -18
requirements.txt
CHANGED
|
@@ -1,32 +1,30 @@
|
|
| 1 |
-
# Enhanced Public Speaking Coach -
|
| 2 |
# Install with: pip install -r requirements.txt
|
| 3 |
|
| 4 |
# Core ML/AI
|
| 5 |
-
torch
|
| 6 |
-
transformers
|
| 7 |
-
|
| 8 |
-
|
| 9 |
sentence-transformers==2.2.2
|
| 10 |
|
| 11 |
# Audio Processing
|
| 12 |
-
openai-whisper
|
| 13 |
-
librosa
|
| 14 |
-
soundfile
|
| 15 |
|
| 16 |
# Scientific Computing
|
| 17 |
-
numpy
|
| 18 |
-
scipy
|
| 19 |
|
| 20 |
# NLP & Text Analysis
|
| 21 |
-
textstat
|
| 22 |
|
| 23 |
-
# Text-to-Speech
|
| 24 |
-
TTS
|
| 25 |
|
| 26 |
# Web Server
|
| 27 |
-
fastapi
|
| 28 |
-
uvicorn
|
| 29 |
-
python-multipart
|
| 30 |
|
| 31 |
-
#
|
| 32 |
-
accelerate
|
|
|
|
| 1 |
+
# Enhanced Public Speaking Coach - Pinned Versions
|
| 2 |
# Install with: pip install -r requirements.txt
|
| 3 |
|
| 4 |
# Core ML/AI
|
| 5 |
+
torch==2.0.1
|
| 6 |
+
transformers==4.30.2
|
|
|
|
|
|
|
| 7 |
sentence-transformers==2.2.2
|
| 8 |
|
| 9 |
# Audio Processing
|
| 10 |
+
openai-whisper==20231117
|
| 11 |
+
librosa==0.10.1
|
| 12 |
+
soundfile==0.12.1
|
| 13 |
|
| 14 |
# Scientific Computing
|
| 15 |
+
numpy==1.24.3
|
| 16 |
+
scipy==1.10.1
|
| 17 |
|
| 18 |
# NLP & Text Analysis
|
| 19 |
+
textstat==0.7.3
|
| 20 |
|
| 21 |
+
# Text-to-Speech
|
| 22 |
+
TTS==0.22.0
|
| 23 |
|
| 24 |
# Web Server
|
| 25 |
+
fastapi==0.104.1
|
| 26 |
+
uvicorn==0.24.0
|
| 27 |
+
python-multipart==0.0.6
|
| 28 |
|
| 29 |
+
# Utilities
|
| 30 |
+
accelerate==0.20.3
|