jacob-c commited on
Commit
6f53b6a
·
1 Parent(s): bfb768f

diffuserfix

Browse files
Files changed (1) hide show
  1. requirements.txt +31 -18
requirements.txt CHANGED
@@ -1,34 +1,47 @@
 
1
  torch==2.0.1
2
  torchaudio==2.0.2
3
  torchvision==0.15.2
 
 
4
  transformers==4.27.0
5
  accelerate==0.21.0
 
 
6
  datasets==2.1.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  einops==0.6.1
8
  h5py==3.8.0
9
- diffusers==0.19.3 # Version compatible with older huggingface_hub
10
- huggingface_hub==0.16.4
11
  importlib_metadata==6.3.0
12
- librosa==0.9.2
13
- matplotlib==3.5.2
14
- numpy==1.23.0
15
  omegaconf==2.3.0
16
  packaging==23.1
17
- pandas==1.4.1
18
  progressbar33==2.4
19
- protobuf==3.20.*
20
- resampy==0.4.2
21
- safetensors==0.3.2
22
  sentencepiece==0.1.99
23
- scikit_image==0.19.3
24
- scikit_learn==1.2.2
25
- scipy==1.8.0
26
- soundfile==0.12.1
27
- ssr_eval==0.0.6
28
- torchlibrosa==0.1.0
29
  tqdm==4.63.1
30
  wandb==0.12.14
31
  ipython==8.12.0
32
- gradio==4.3.0
33
- wavio==0.0.7
34
- bigvgan==2.4.1
 
 
 
1
+ # Core PyTorch dependencies
2
  torch==2.0.1
3
  torchaudio==2.0.2
4
  torchvision==0.15.2
5
+
6
+ # Hugging Face ecosystem - aligned versions
7
  transformers==4.27.0
8
  accelerate==0.21.0
9
+ diffusers==0.19.3
10
+ huggingface_hub>=0.23.4 # Updated to satisfy bigvgan requirement
11
  datasets==2.1.0
12
+ safetensors==0.3.2
13
+
14
+ # Audio processing
15
+ librosa==0.9.2
16
+ soundfile==0.12.1
17
+ torchlibrosa==0.1.0
18
+ wavio==0.0.7
19
+ resampy==0.4.2
20
+ ssr_eval==0.0.6
21
+ bigvgan==2.4.1
22
+
23
+ # Data processing and visualization
24
+ numpy==1.23.0
25
+ pandas==1.4.1
26
+ matplotlib==3.5.2
27
+ scikit_image==0.19.3
28
+ scikit_learn==1.2.2
29
+ scipy==1.8.0
30
+
31
+ # Utils and others
32
  einops==0.6.1
33
  h5py==3.8.0
 
 
34
  importlib_metadata==6.3.0
 
 
 
35
  omegaconf==2.3.0
36
  packaging==23.1
 
37
  progressbar33==2.4
38
+ protobuf==3.20.3
 
 
39
  sentencepiece==0.1.99
 
 
 
 
 
 
40
  tqdm==4.63.1
41
  wandb==0.12.14
42
  ipython==8.12.0
43
+ gradio>=4.3.0 # Allow newer versions for compatibility
44
+
45
+ # Dependencies needed by audio processing
46
+ ffmpeg-python
47
+ ninja