From 98cb7c2ce21ca89b9601c908df0086fc468ec631 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Tue, 12 May 2020 08:59:23 -0400 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 665fcf36..77633d97 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Here's a minimal example without a validation or test loop. class LitClassifier(pl.LightningModule): def __init__(self): - super(MNISTModel, self).__init__() + super().__init__() self.l1 = torch.nn.Linear(28 * 28, 10) def forward(self, x):