theadityamittal commited on
Commit
d78f5c0
·
1 Parent(s): 950fcde

Update requirements.txt to specify package versions for better dependency management

Browse files
Files changed (1) hide show
  1. requirements.txt +21 -11
requirements.txt CHANGED
@@ -1,11 +1,21 @@
1
- torch
2
- librosa
3
- fastapi
4
- uvicorn
5
- mlflow
6
- dvc
7
- pytest
8
- gradio
9
- soundfile
10
- huggingface_hub
11
- omegaconf
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core ML and Audio Processing
2
+ torch>=2.0.0
3
+ librosa>=0.10.0
4
+ soundfile>=0.12.0
5
+ numpy>=1.21.0
6
+
7
+ # Gradio for web interface
8
+ gradio>=4.0.0
9
+
10
+ # Configuration and model management
11
+ omegaconf>=2.3.0
12
+ huggingface_hub>=0.16.0
13
+
14
+ # Development and MLOps (optional for deployment)
15
+ fastapi>=0.100.0
16
+ uvicorn>=0.23.0
17
+ mlflow>=2.5.0
18
+ dvc[s3]>=3.0.0
19
+
20
+ # Testing (development only)
21
+ pytest>=7.0.0