Fixing word tense (#6974)

Changing "defined" to "defines" in keeping with the convention of using present tense in comments.
This commit is contained in:
Aditya Shukla 2021-04-13 14:50:33 +05:30 committed by GitHub
parent b37b58a73e
commit 644e7aadf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)