Fixing word tense (#6974)
Changing "defined" to "defines" in keeping with the convention of using present tense in comments.
This commit is contained in:
parent
b37b58a73e
commit
644e7aadf0
|
@ -177,7 +177,7 @@ class LitAutoEncoder(pl.LightningModule):
|
|||
return embedding
|
||||
|
||||
def training_step(self, batch, batch_idx):
|
||||
# training_step defined the train loop. It is independent of forward
|
||||
# training_step defines the train loop. It is independent of forward
|
||||
x, y = batch
|
||||
x = x.view(x.size(0), -1)
|
||||
z = self.encoder(x)
|
||||
|
|
Loading…
Reference in New Issue