Update requirements.txt
Browse files- requirements.txt +18 -6
requirements.txt
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
numpy
|
| 2 |
-
pandas
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
huggingface_hub
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
torch
|
| 8 |
transformers
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Whisper from the OpenAI repository
|
| 2 |
+
git+https://github.com/openai/whisper.git
|
| 3 |
+
|
| 4 |
+
# Basic libraries for data processing
|
| 5 |
numpy
|
| 6 |
+
pandas
|
| 7 |
+
|
| 8 |
+
# Google Translate API for translations
|
| 9 |
+
googletrans==4.0.0-rc1
|
| 10 |
+
|
| 11 |
+
# Hugging Face Hub for model downloading and authentication
|
| 12 |
huggingface_hub
|
| 13 |
+
|
| 14 |
+
# Transformers library for NLP models
|
|
|
|
| 15 |
transformers
|
| 16 |
+
|
| 17 |
+
# PyTorch for deep learning
|
| 18 |
+
torch
|
| 19 |
+
|
| 20 |
+
# Gradio for creating the web interface
|
| 21 |
+
gradio
|