Peeble commited on
Commit
4eb84df
·
verified ·
1 Parent(s): ebb6be0

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +18 -0
requirements.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Web Interface
2
+ gradio
3
+
4
+ # Core Machine Learning & Hugging Face
5
+ torch
6
+ torchaudio
7
+ transformers
8
+ optimum[onnxruntime-gpu] # Use optimum[onnxruntime] if you do not have an NVIDIA GPU
9
+
10
+ # ONNX specific
11
+ onnx
12
+ onnxruntime-gpu # Change to onnxruntime if CPU-only
13
+
14
+ # Audio Processing & Utilities
15
+ librosa
16
+ numpy
17
+ soundfile
18
+ pathlib