clean up docs around loggers (#304)

This commit is contained in:
William Falcon
2019-10-04 18:53:38 -04:00
committed by GitHub
parent a8ccb88163
commit a578de511d
7 changed files with 23 additions and 12 deletions
@@ -281,7 +281,7 @@ def validation_step(self, batch, batch_nb):
# or generated text... or whatever
sample_imgs = x[:6]
grid = torchvision.utils.make_grid(sample_imgs)
self.experiment.add_image('example_images', grid, 0)
self.logger.experiment.add_image('example_images', grid, 0)
# calculate acc
labels_hat = torch.argmax(out, dim=1)