Giovanni Inchiostro commited on
Commit
298dfe8
·
1 Parent(s): 5fe1842

Minimal requirements for Hugging Face Spaces

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -5
requirements.txt CHANGED
@@ -1,8 +1,10 @@
1
  flask
2
- huggingface_hub
 
3
  numpy
4
- scipy
5
  librosa
6
- soundfile
7
- tensorflow==2.15.0
8
- # gunicorn # optional but recommended for Flask on Spaces
 
 
1
  flask
2
+ gunicorn # recommended for Flask on Spaces
3
+ huggingface_hub # to download model from HF Model Hub
4
  numpy
5
+ scipy # needed by librosa
6
  librosa
7
+ soundfile # audio I/O
8
+ pandas # used in other files
9
+ matplotlib # required because main_post_processing imports it
10
+ tensorflow==2.15.0 # CPU build for Linux; stable for Spaces