Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/CTC/hparams/train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ train_annotation: !ref <output_folder>/train.json
valid_annotation: !ref <output_folder>/dev.json
test_annotation: !ref <output_folder>/test.json
skip_prep: False # Skip data preparation
uppercase: False # Must be True when the TIMIT dataset is in the upper-case version

# Training parameters
number_of_epochs: 50
Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/CTC/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ def text_pipeline(phn):
"save_json_valid": hparams["valid_annotation"],
"save_json_test": hparams["test_annotation"],
"skip_prep": hparams["skip_prep"],
"uppercase": hparams["uppercase"],
},
)

Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/seq2seq/hparams/train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ train_annotation: !ref <output_folder>/train.json
valid_annotation: !ref <output_folder>/dev.json
test_annotation: !ref <output_folder>/test.json
skip_prep: False # Skip data preparation
uppercase: False # Must be True when the TIMIT dataset is in the upper-case version

# Training parameters
number_of_epochs: 50
Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/seq2seq/hparams/train_with_wav2vec2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ train_annotation: !ref <output_folder>/train.json
valid_annotation: !ref <output_folder>/dev.json
test_annotation: !ref <output_folder>/test.json
skip_prep: False # Skip data preparation
uppercase: False # Must be True when the TIMIT dataset is in the upper-case version

# Training parameters
number_of_epochs: 20
Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/seq2seq/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ def text_pipeline(phn):
"save_json_valid": hparams["valid_annotation"],
"save_json_test": hparams["test_annotation"],
"skip_prep": hparams["skip_prep"],
"uppercase": hparams["uppercase"],
},
)

Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/seq2seq/train_with_wav2vec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ def text_pipeline(phn):
"save_json_valid": hparams["valid_annotation"],
"save_json_test": hparams["test_annotation"],
"skip_prep": hparams["skip_prep"],
"uppercase": hparams["uppercase"],
},
)

Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/transducer/hparams/train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ train_annotation: !ref <data_folder>/train.json
valid_annotation: !ref <data_folder>/dev.json
test_annotation: !ref <data_folder>/test.json
skip_prep: False # Skip data preparation
uppercase: False # Must be True when the TIMIT dataset is in the upper-case version

# Training parameters
number_of_epochs: 50
Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/transducer/hparams/train_wav2vec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ train_annotation: !ref <data_folder>/train.json
valid_annotation: !ref <data_folder>/dev.json
test_annotation: !ref <data_folder>/test.json
skip_prep: False # Skip data preparation
uppercase: False # Must be True when the TIMIT dataset is in the upper-case version

# Training parameters
number_of_epochs: 20
Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/transducer/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def text_pipeline(phn):
"save_json_valid": hparams["valid_annotation"],
"save_json_test": hparams["test_annotation"],
"skip_prep": hparams["skip_prep"],
"uppercase": hparams["uppercase"],
},
)

Expand Down
1 change: 1 addition & 0 deletions recipes/TIMIT/ASR/transducer/train_wav2vec.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ def text_pipeline(phn):
"save_json_valid": hparams["valid_annotation"],
"save_json_test": hparams["test_annotation"],
"skip_prep": hparams["skip_prep"],
"uppercase": hparams["uppercase"],
},
)

Expand Down