diff --git a/README.md b/README.md index 56348d90..a9c50109 100644 --- a/README.md +++ b/README.md @@ -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, dataset_i): + def validation_step(self, batch, batch_nb, dataloader_i): # OPTIONAL x, y = batch y_hat = self.forward(x)