11import copy
22
3- from .experiment import get_wei_config
3+ from .experiment import get_baseline_config
44from .nn_setup import get_spec_augment_mask_python
55from i6_core .returnn .config import ReturnnConfig
66from i6_experiments .common .setups .rasr .util import HybridArgs , ReturnnTrainingJobArgs
77from copy import deepcopy
88
99
10- def get_nn_args (num_epochs = 125 , no_min_seq_len = False ):
10+ def get_nn_args (num_epochs = 125 ):
1111
12- # gets the hardcoded config from existing setup for baseline and comparison
13- base_config = get_wei_config ()
12+ base_config = get_baseline_config ()
1413 returnn_config = ReturnnConfig (config = base_config )
15- # two variants of spec augment
14+
1615 spec_augment_args = {
1716 "max_time_num" : 3 ,
1817 "max_time" : 10 ,
@@ -21,12 +20,12 @@ def get_nn_args(num_epochs=125, no_min_seq_len=False):
2120 "conservatvie_step" : 2000 ,
2221 }
2322 specaug = get_spec_augment_mask_python (** spec_augment_args )
24- specaug_config = get_wei_config (specaug = True )
23+ specaug_config = get_baseline_config (specaug = True )
2524 spec_cfg = ReturnnConfig (config = copy .deepcopy (specaug_config ), python_epilog = specaug )
2625
2726 configs = {
28- "wei_base_config " : returnn_config ,
29- "wei_specaug_config " : spec_cfg ,
27+ "base_config " : returnn_config ,
28+ "specaug_config " : spec_cfg ,
3029 }
3130
3231 # change softmax to log softmax for hybrid
0 commit comments