ZhangRC commited on
Commit
714c999
·
verified ·
1 Parent(s): f90c037

Upload config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +24 -0
config.yaml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ feature_extractor:
2
+ class_path: vocos.feature_extractors.MelSpectrogramFeatures
3
+ init_args:
4
+ sample_rate: 32000
5
+ n_fft: 2048
6
+ hop_length: 1024
7
+ n_mels: 128
8
+ padding: center
9
+
10
+ backbone:
11
+ class_path: vocos.models.VocosBackbone
12
+ init_args:
13
+ input_channels: 128
14
+ dim: 512
15
+ intermediate_dim: 1536
16
+ num_layers: 8
17
+
18
+ head:
19
+ class_path: vocos.heads.ISTFTHead
20
+ init_args:
21
+ dim: 512
22
+ n_fft: 2048
23
+ hop_length: 1024
24
+ padding: center