diff --git a/egs/swbd/ASR/conformer_ctc/decode.py b/egs/swbd/ASR/conformer_ctc/decode.py index 396a264a2..2bbade374 100755 --- a/egs/swbd/ASR/conformer_ctc/decode.py +++ b/egs/swbd/ASR/conformer_ctc/decode.py @@ -66,7 +66,7 @@ def get_parser(): parser.add_argument( "--epoch", type=int, - default=77, + default=98, help="It specifies the checkpoint to use for decoding." "Note: Epoch counts from 0.", ) diff --git a/egs/swbd/ASR/conformer_ctc/export.py b/egs/swbd/ASR/conformer_ctc/export.py index fbcbd7b29..1bb6277ad 100755 --- a/egs/swbd/ASR/conformer_ctc/export.py +++ b/egs/swbd/ASR/conformer_ctc/export.py @@ -39,7 +39,7 @@ def get_parser(): parser.add_argument( "--epoch", type=int, - default=34, + default=98, help="It specifies the checkpoint to use for decoding." "Note: Epoch counts from 0.", ) @@ -47,7 +47,7 @@ def get_parser(): parser.add_argument( "--avg", type=int, - default=20, + default=55, help="Number of checkpoints to average. Automatically select " "consecutive checkpoints before the checkpoint specified by " "'--epoch'. ", diff --git a/egs/swbd/ASR/conformer_ctc/train.py b/egs/swbd/ASR/conformer_ctc/train.py index 8ed837aaf..7f1eebbcf 100755 --- a/egs/swbd/ASR/conformer_ctc/train.py +++ b/egs/swbd/ASR/conformer_ctc/train.py @@ -93,7 +93,7 @@ def get_parser(): parser.add_argument( "--num-epochs", type=int, - default=78, + default=98, help="Number of epochs to train.", )