Add config/everyvoice-aligner.yaml for Shona
Browse files
config/everyvoice-aligner.yaml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
VERSION: '1.0'
|
| 2 |
+
contact: {contact_email: david.guzman@mail.mcgill.ca, contact_name: David Guzman}
|
| 3 |
+
model: {conv_dim: 512, lstm_dim: 512, target_text_representation_level: characters}
|
| 4 |
+
path_to_model_config_file: null
|
| 5 |
+
path_to_preprocessing_config_file: everyvoice-shared-data.yaml
|
| 6 |
+
path_to_text_config_file: everyvoice-shared-text.yaml
|
| 7 |
+
path_to_training_config_file: null
|
| 8 |
+
training:
|
| 9 |
+
batch_size: 16
|
| 10 |
+
binned_sampler: true
|
| 11 |
+
check_val_every_n_epoch: null
|
| 12 |
+
ckpt_epochs: 1
|
| 13 |
+
ckpt_steps: null
|
| 14 |
+
extraction_method: dijkstra
|
| 15 |
+
filelist_loader: everyvoice.utils.generic_dict_loader
|
| 16 |
+
finetune_checkpoint: null
|
| 17 |
+
logger: {name: AlignerExperiment, save_dir: ../logs_and_checkpoints, sub_dir_callable: everyvoice.utils.get_current_time,
|
| 18 |
+
version: base}
|
| 19 |
+
max_epochs: 1000
|
| 20 |
+
max_steps: 100000
|
| 21 |
+
optimizer:
|
| 22 |
+
betas: [0.9, 0.98]
|
| 23 |
+
eps: 1.0e-08
|
| 24 |
+
learning_rate: 0.0001
|
| 25 |
+
name: adamw
|
| 26 |
+
weight_decay: 0.01
|
| 27 |
+
plot_steps: 1000
|
| 28 |
+
save_top_k_ckpts: 5
|
| 29 |
+
train_data_workers: 4
|
| 30 |
+
training_filelist: ../preprocessed/training_filelist.psv
|
| 31 |
+
val_check_interval: 500
|
| 32 |
+
val_data_workers: 0
|
| 33 |
+
validation_filelist: ../preprocessed/validation_filelist.psv
|