We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 891681e commit f11deb2Copy full SHA for f11deb2
docs/sources/source/asr/tutorial.rst
@@ -290,6 +290,8 @@ Training time can be dramatically reduced if starting from a good pre-trained mo
290
291
jasper_encoder.restore_from("<path_to_checkpoints>/15x5SEP/JasperEncoder-STEP-247400.pt")
292
jasper_decoder.restore_from("<path_to_checkpoints>/15x5SEP/JasperDecoderForCTC-STEP-247400.pt")
293
+ # in case of distributed training add args.local_rank
294
+ jasper_decoder.restore_from("<path_to_checkpoints>/15x5SEP/JasperDecoderForCTC-STEP-247400.pt", args.local_rank)
295
296
.. tip::
297
When fine-tuning, use smaller learning rate.
0 commit comments