Upload config.yaml
Browse files- config.yaml +33 -0
config.yaml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# pytorch_lightning==1.8.6
|
| 2 |
+
|
| 3 |
+
feature_extractor:
|
| 4 |
+
class_path: vocos.feature_extractors.MelSpectrogramFeatures
|
| 5 |
+
init_args:
|
| 6 |
+
sample_rate: 22050
|
| 7 |
+
n_fft: 1024
|
| 8 |
+
hop_length: 256
|
| 9 |
+
n_mels: 80
|
| 10 |
+
padding: same
|
| 11 |
+
f_min: 0
|
| 12 |
+
f_max: 8000
|
| 13 |
+
norm: "slaney"
|
| 14 |
+
mel_scale: "slaney"
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
backbone:
|
| 18 |
+
class_path: vocos.models.VocosBackbone
|
| 19 |
+
init_args:
|
| 20 |
+
input_channels: 80
|
| 21 |
+
dim: 512
|
| 22 |
+
intermediate_dim: 1536
|
| 23 |
+
num_layers: 8
|
| 24 |
+
|
| 25 |
+
head:
|
| 26 |
+
class_path: vocos.heads.ISTFTHead
|
| 27 |
+
init_args:
|
| 28 |
+
dim: 512
|
| 29 |
+
n_fft: 1024
|
| 30 |
+
hop_length: 256
|
| 31 |
+
padding: same
|
| 32 |
+
|
| 33 |
+
|