Skip to content

Commit 4cdad63

Browse files
author
Seth Weidman
committed
Fix types in TensorBoard tutorial
1 parent 1e6be64 commit 4cdad63

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

intermediate_source/tensorboard_tutorial.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ TensorBoard, a tool designed for visualizing the results of neural
1111
network training runs. This tutorial illustrates some of its
1212
functionality, using the
1313
`Fashion-MNIST dataset <https://github.com/zalandoresearch/fashion-mnist>`__
14-
which can be read into PyTorch using `torchvision.dataset` just as
15-
the CIFAR-10 data can.
14+
which can be read into PyTorch using `torchvision.datasets`.
1615

1716
In this tutorial, we'll learn how to:
1817

@@ -28,7 +27,7 @@ Specifically, on point #5, we'll see:
2827
* How to track our model's performance as it trains
2928
* How to assess our model's performance once it is trained.
3029

31-
We'll begin with similar boilerplate code as in the prior tutorial:
30+
We'll begin with similar boilerplate code as in the `CIFAR-10 tutorial <https://pytorch.org/tutorials/beginner/blitz/cifar10_tutorial.html>`__:
3231

3332
.. code:: python
3433
@@ -83,7 +82,7 @@ We'll begin with similar boilerplate code as in the prior tutorial:
8382
else:
8483
plt.imshow(np.transpose(npimg, (1, 2, 0)))
8584
86-
We'll define a similar model architecture from before, making only
85+
We'll define a similar model architecture from that tutorial, making only
8786
minor modifications to account for the fact that the images are now
8887
one channel instead of three and 28x28 instead of 32x32:
8988

0 commit comments

Comments
 (0)