-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from microsoft/alvinn/textnorm_remove_fillers
Normalization update: remove fillers and more
- Loading branch information
Showing
9 changed files
with
205 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Note there's newer and better data. Do not download v1.2 | ||
train_dir: ./v1.2/100hrs/train | ||
val_dir: ./v1.2/100hrs/val | ||
out_dir: ./ | ||
|
||
train_set_cfg: | ||
sample_frac: 1.0 | ||
max_urls: null # null means no limit | ||
val_set_cfg: | ||
sample_frac: 1.0 | ||
max_urls: null # null means no limit | ||
|
||
clip_gt_to_mixture: True | ||
|
||
log_params_mlflow: True | ||
log_metrics_mlflow: True | ||
|
||
scheduler_step_every: [1, iterations] | ||
scheduler_name: step_lr | ||
scheduler_linear_warmup_decay_cfg: | ||
warmup: 10000 | ||
decay: 260000 | ||
scheduler_step_lr_cfg: | ||
step_size: 1 | ||
gamma: 1.0 # no decay | ||
|
||
stop_after: [260000, iterations] | ||
eval_every: [1000, iterations] | ||
save_every: [1000, iterations] | ||
|
||
global_batch_size: 256 | ||
learning_rate: 1e-5 | ||
weight_decay: 1e-2 # according to the paper set to 1e-2 | ||
|
||
# Large model per CSS with Conformer definition | ||
conformer_css_cfg: | ||
nnet_conf: | ||
conformer_conf: | ||
attention_dim: 512 # default 256 | ||
attention_heads: 8 # default 4 | ||
num_blocks: 18 # default 16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Note there's newer and better data. Do not download v1.2 | ||
train_dir: ./v1.2/100hrs/train | ||
val_dir: ./v1.2/100hrs/val | ||
out_dir: ./ | ||
|
||
single_channel: True | ||
|
||
train_set_cfg: | ||
sample_frac: 1.0 | ||
max_urls: null # null means no limit | ||
val_set_cfg: | ||
sample_frac: 1.0 | ||
max_urls: null # null means no limit | ||
|
||
clip_gt_to_mixture: True | ||
|
||
log_params_mlflow: True | ||
log_metrics_mlflow: True | ||
|
||
scheduler_step_every: [1, iterations] | ||
scheduler_name: step_lr | ||
scheduler_linear_warmup_decay_cfg: | ||
warmup: 10000 | ||
decay: 260000 | ||
scheduler_step_lr_cfg: | ||
step_size: 1 | ||
gamma: 1.0 # no decay | ||
|
||
stop_after: [260000, iterations] | ||
eval_every: [1000, iterations] | ||
save_every: [1000, iterations] | ||
|
||
global_batch_size: 256 | ||
learning_rate: 1e-5 | ||
weight_decay: 1e-2 # according to the paper set to 1e-2 | ||
|
||
# Large model per CSS with Conformer definition | ||
conformer_css_cfg: | ||
extractor_conf: | ||
ipd_index: '' # For MC '1,0;2,0;3,0;4,0;5,0;6,0'. For SC ''. | ||
nnet_conf: | ||
conformer_conf: | ||
attention_dim: 512 # default 256 | ||
attention_heads: 8 # default 4 | ||
num_blocks: 18 # default 16 | ||
in_features: 257 # For MC 1799. For SC 257. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters