From 9051eb0039f39f95af4204bedf3c0cf404dc458c Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 17 Jul 2019 15:56:55 -0400 Subject: [PATCH] updated docs --- docs/Trainer/Training Loop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Trainer/Training Loop.md b/docs/Trainer/Training Loop.md index 9b05fd58..2be8da9e 100644 --- a/docs/Trainer/Training Loop.md +++ b/docs/Trainer/Training Loop.md @@ -19,7 +19,7 @@ Cut the learning rate by 10 at every epoch listed in this list. trainer = Trainer(lr_scheduler_milestones=None) # cut LR by 10 at 100, 200, and 300 epochs -trainer = Trainer(lr_scheduler_milestones=[100, 200, 300]) +trainer = Trainer(lr_scheduler_milestones='100, 200, 300') ``` ---