chhola14bhatoora commited on
Commit
84228cd
·
verified ·
1 Parent(s): 966aef6

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +18 -6
requirements.txt CHANGED
@@ -1,9 +1,21 @@
 
 
 
 
1
  numpy
2
- pandas
3
- googletrans
 
 
 
 
4
  huggingface_hub
5
- gradio
6
- whisper
7
- torch
8
  transformers
9
- os
 
 
 
 
 
 
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