Update hyperparams.yaml
Browse files- hyperparams.yaml +18 -106
hyperparams.yaml
CHANGED
@@ -1,40 +1,4 @@
|
|
1 |
-
|
2 |
-
# /opt/speechbrain_LID/recipes/VoxLingua107/lang_id/hparams/train_ecapa.yaml
|
3 |
-
# yamllint disable
|
4 |
-
################################
|
5 |
-
# Model: language identification with ECAPA
|
6 |
-
# Authors: Tanel Alum������������������������������������������������������e, 2021
|
7 |
-
# ################################
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
# Basic parameters
|
12 |
-
seed: 1988
|
13 |
-
__set_seed: !apply:torch.manual_seed [1988]
|
14 |
-
output_folder: results/epaca/1988
|
15 |
-
save_folder: results/epaca/1988/save
|
16 |
-
train_log: results/epaca/1988/train_log.txt
|
17 |
-
data_folder: ./
|
18 |
-
rir_folder: ./
|
19 |
-
|
20 |
-
shards_url: /opt/speechbrain_LID/recipes/VoxLingua107/lang_id/data_shards
|
21 |
-
train_meta: /opt/speechbrain_LID/recipes/VoxLingua107/lang_id/data_shards/train/meta.json
|
22 |
-
val_meta: /opt/speechbrain_LID/recipes/VoxLingua107/lang_id/data_shards/dev/meta.json
|
23 |
-
train_shards: /opt/speechbrain_LID/recipes/VoxLingua107/lang_id/data_shards/train/shard-{000000..000009}.tar
|
24 |
-
val_shards: /opt/speechbrain_LID/recipes/VoxLingua107/lang_id/data_shards/dev/shard-000000.tar
|
25 |
-
|
26 |
-
# Set to directory on a large disk if you are training on Webdataset shards hosted on the web
|
27 |
-
#shard_cache_dir:
|
28 |
-
|
29 |
-
ckpt_interval_minutes: 5
|
30 |
-
|
31 |
-
# Training parameters
|
32 |
-
number_of_epochs: 40
|
33 |
-
lr: 0.001
|
34 |
-
lr_final: 0.0001
|
35 |
-
sample_rate: 16000
|
36 |
-
sentence_len: 3 # seconds
|
37 |
-
|
38 |
# Feature parameters
|
39 |
n_mels: 60
|
40 |
left_frames: 0
|
@@ -44,14 +8,6 @@ deltas: false
|
|
44 |
# Number of languages
|
45 |
out_n_neurons: 2
|
46 |
|
47 |
-
train_dataloader_options:
|
48 |
-
num_workers: 2
|
49 |
-
batch_size: 128
|
50 |
-
|
51 |
-
val_dataloader_options:
|
52 |
-
num_workers: 0
|
53 |
-
batch_size: 32
|
54 |
-
|
55 |
# Functions
|
56 |
compute_features: &id003 !new:speechbrain.lobes.features.Fbank
|
57 |
n_mels: 60
|
@@ -72,33 +28,7 @@ classifier: &id005 !new:speechbrain.lobes.models.Xvector.Classifier
|
|
72 |
activation: !name:torch.nn.LeakyReLU
|
73 |
lin_blocks: 1
|
74 |
lin_neurons: 512
|
75 |
-
out_neurons:
|
76 |
-
|
77 |
-
epoch_counter: &id007 !new:speechbrain.utils.epoch_loop.EpochCounter
|
78 |
-
limit: 40
|
79 |
-
|
80 |
-
|
81 |
-
augment_speed: &id001 !new:speechbrain.lobes.augment.TimeDomainSpecAugment
|
82 |
-
sample_rate: 16000
|
83 |
-
speeds: [90, 100, 110]
|
84 |
-
|
85 |
-
|
86 |
-
add_rev_noise: &id002 !new:speechbrain.lobes.augment.EnvCorrupt
|
87 |
-
openrir_folder: ./
|
88 |
-
openrir_max_noise_len: 3.0 # seconds
|
89 |
-
reverb_prob: 0.5
|
90 |
-
noise_prob: 0.8
|
91 |
-
noise_snr_low: 0
|
92 |
-
noise_snr_high: 15
|
93 |
-
rir_scale_factor: 1.0
|
94 |
-
|
95 |
-
# Definition of the augmentation pipeline.
|
96 |
-
# If concat_augment = False, the augmentation techniques are applied
|
97 |
-
# in sequence. If concat_augment = True, all the augmented signals
|
98 |
-
# # are concatenated in a single big batch.
|
99 |
-
augment_pipeline: [*id001, *id002]
|
100 |
-
|
101 |
-
concat_augment: false
|
102 |
|
103 |
mean_var_norm: &id006 !new:speechbrain.processing.features.InputNormalization
|
104 |
|
@@ -106,37 +36,19 @@ mean_var_norm: &id006 !new:speechbrain.processing.features.InputNormalization
|
|
106 |
std_norm: false
|
107 |
|
108 |
modules:
|
109 |
-
compute_features:
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
epoch_count: 40
|
126 |
-
|
127 |
-
# Logging + checkpoints
|
128 |
-
train_logger: !new:speechbrain.utils.train_logger.FileTrainLogger
|
129 |
-
save_file: results/epaca/1988/train_log.txt
|
130 |
-
|
131 |
-
|
132 |
-
error_stats: !name:speechbrain.utils.metric_stats.MetricStats
|
133 |
-
metric: !name:speechbrain.nnet.losses.classification_error
|
134 |
-
reduction: batch
|
135 |
-
|
136 |
-
checkpointer: !new:speechbrain.utils.checkpoints.Checkpointer
|
137 |
-
checkpoints_dir: results/epaca/1988/save
|
138 |
-
recoverables:
|
139 |
-
embedding_model: *id004
|
140 |
-
classifier: *id005
|
141 |
-
normalizer: *id006
|
142 |
-
counter: *id007
|
|
|
1 |
+
pretrained_path: sahita/lang-VoxLingua107-ecapa
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# Feature parameters
|
3 |
n_mels: 60
|
4 |
left_frames: 0
|
|
|
8 |
# Number of languages
|
9 |
out_n_neurons: 2
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
# Functions
|
12 |
compute_features: &id003 !new:speechbrain.lobes.features.Fbank
|
13 |
n_mels: 60
|
|
|
28 |
activation: !name:torch.nn.LeakyReLU
|
29 |
lin_blocks: 1
|
30 |
lin_neurons: 512
|
31 |
+
out_neurons: !ref <out_n_neurons>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
mean_var_norm: &id006 !new:speechbrain.processing.features.InputNormalization
|
34 |
|
|
|
36 |
std_norm: false
|
37 |
|
38 |
modules:
|
39 |
+
compute_features: !ref <compute_features>
|
40 |
+
embedding_model: !ref <embedding_model>
|
41 |
+
classifier: !ref <classifier>
|
42 |
+
mean_var_norm: !ref <mean_var_norm>
|
43 |
+
|
44 |
+
label_encoder: !new:speechbrain.dataio.encoder.CategoricalEncoder
|
45 |
+
|
46 |
+
pretrainer: !new:speechbrain.utils.parameter_transfer.Pretrainer
|
47 |
+
loadables:
|
48 |
+
embedding_model: !ref <embedding_model>
|
49 |
+
classifier: !ref <classifier>
|
50 |
+
label_encoder: !ref <label_encoder>
|
51 |
+
paths:
|
52 |
+
embedding_model: !ref <pretrained_path>/embedding_model.ckpt
|
53 |
+
classifier: !ref <pretrained_path>/classifier.ckpt
|
54 |
+
label_encoder: !ref <pretrained_path>/label_encoder.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|