From e880e29f2bb93ef5869108ceac3f28c46214bc86 Mon Sep 17 00:00:00 2001 From: Rishabh Anand Date: Wed, 25 Mar 2020 02:48:31 +0800 Subject: [PATCH] Fixed typos in README (#1219) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ea289d73..f22cfad9 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ In summary, you: class LitSystem(pl.LightningModule): def __init__(self): - super(CoolSystem, self).__init__() + super(LitSystem, self).__init__() # not the best model... self.l1 = torch.nn.Linear(28 * 28, 10) @@ -152,7 +152,7 @@ In summary, you: ```python from pytorch_lightning import Trainer - model = CoolSystem() + model = LitSystem() # most basic trainer, uses good defaults trainer = Trainer()