Create requirements.txt
Browse files- requirements.txt +5 -0
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
transformers==4.30.2 # For the Whisper model and processor
|
2 |
+
gradio==3.13.0 # For the Gradio interface
|
3 |
+
datasets==2.14.1 # To load and manage the bigcode/the-stack dataset
|
4 |
+
torch==2.0.1 # For model inference with Whisper
|
5 |
+
soundfile==0.11.0 # For audio file handling
|