Upload hyperparams.yaml
Browse files- hyperparams.yaml +33 -0
hyperparams.yaml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
defaults:
|
| 2 |
+
- common
|
| 3 |
+
- config
|
| 4 |
+
|
| 5 |
+
data:
|
| 6 |
+
use_lang_emb: true
|
| 7 |
+
num_langs: 11
|
| 8 |
+
lang_dim: 192 # same size as hidden_channels to facilitate the addition
|
| 9 |
+
lang2id:
|
| 10 |
+
chinese: 0
|
| 11 |
+
dutch: 1
|
| 12 |
+
english: 2
|
| 13 |
+
french: 3
|
| 14 |
+
german: 4
|
| 15 |
+
italian: 5
|
| 16 |
+
japanese: 6
|
| 17 |
+
other: 7
|
| 18 |
+
polish: 8
|
| 19 |
+
portuguese: 9
|
| 20 |
+
spanish: 10
|
| 21 |
+
use_spk_emb: false
|
| 22 |
+
spk_embeddings_dir: null # compute on forward (model)
|
| 23 |
+
spk_encoder_type: null # compute on forward (model) | ECAPA2SpeakerEncoder16k
|
| 24 |
+
content_encoder_type: null # compute on forward (model) | hubert
|
| 25 |
+
content_encoder_ckpt: null # compute on forward (model) | lengyue233/content-vec-best
|
| 26 |
+
|
| 27 |
+
model:
|
| 28 |
+
use_spk_emb: true
|
| 29 |
+
spk_encoder_type: ECAPA2SpeakerEncoder16k
|
| 30 |
+
spk_encoder_ckpt: null # Not used for ECAPA2SpeakerEncoder16k
|
| 31 |
+
content_encoder_type: spin # hubert | wavlm | spin
|
| 32 |
+
content_encoder_config: models/spin/spin.yaml # path to the config file for the content encoder
|
| 33 |
+
content_encoder_ckpt: models/spin/spin.ckpt # or models/wavlm/WavLM-Large.pt
|