updated readme

This commit is contained in:
William Falcon
2019-08-13 11:38:35 -04:00
parent 7f53e7bfb3
commit 0d31b9a229
+1 -1
View File
@@ -87,7 +87,7 @@ class CoolModel(pl.LightningModule):
y_hat = self.forward(x)
return {'loss': F.cross_entropy(y_hat, y)}
def validation_step(self, batch, batch_nb, dataloader_i):
def validation_step(self, batch, batch_nb):
# OPTIONAL
x, y = batch
y_hat = self.forward(x)