Skip to content

Commit 8d1ec91

Browse files
Merge branch 'main' into fix-t5nmt-missing-fstring
2 parents ac68ec6 + 58e74a2 commit 8d1ec91

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tutorials/asr/ASR_with_Subword_Tokenization.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@
624624
"metadata": {
625625
"id": "p1O8JRk1qXX9"
626626
},
627-
"source": "params = OmegaConf.load(\"./configs/fast-conformer_ctc_bpe.yaml\")",
627+
"source": "params = OmegaConf.load(\"./configs/fast-conformer_ctc_bpe.yaml\")\nOmegaConf.resolve(params)",
628628
"execution_count": null,
629629
"outputs": []
630630
},
@@ -940,7 +940,7 @@
940940
"params['model']['validation_ds']['batch_size'] = 16\r\n",
941941
"\r\n",
942942
"# Setup the test data loader and make sure the model is on GPU\r\n",
943-
"first_asr_model.setup_test_data(test_data_config=OmegaConf.create(OmegaConf.to_container(params['model']['validation_ds'], resolve=True)))\r\n",
943+
"first_asr_model.setup_test_data(test_data_config=params['model']['validation_ds'])\r\n",
944944
"first_asr_model.cuda()\r\n",
945945
"first_asr_model.eval()\r\n",
946946
"\r\n",

0 commit comments

Comments
 (0)