From 81837221a4839a4456d77d8532a35c6925ce222d Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 15 Aug 2019 13:59:54 -0400 Subject: [PATCH] updated docs --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0faf28868..cc1e2cfffa 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,8 @@ class CoolSystem(pl.LightningModule): def configure_optimizers(self): # REQUIRED - return [torch.optim.Adam(self.parameters(), lr=0.02)] + # can return multiple optimizers and learning_rate schedulers + return torch.optim.Adam(self.parameters(), lr=0.02) @pl.data_loader def tng_dataloader(self):