From 7c44c3a2c09cf011c56804a04f6c9882a8667e9b Mon Sep 17 00:00:00 2001 From: JinZr <60612200+JinZr@users.noreply.github.com> Date: Mon, 4 Sep 2023 12:42:49 +0800 Subject: [PATCH] default params updated --- egs/swbd/ASR/conformer_ctc/decode.py | 2 +- egs/swbd/ASR/conformer_ctc/export.py | 4 ++-- egs/swbd/ASR/conformer_ctc/train.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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.", )