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