File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 9
9
`Optimization <optimization_tutorial.html>`_ ||
10
10
`Save & Load Model <saveloadrun_tutorial.html>`_
11
11
12
- Datasets & Dataloaders
12
+ Datasets & DataLoaders
13
13
===================
14
14
15
15
"""
@@ -222,7 +222,7 @@ def __getitem__(self, idx):
222
222
# Iterate through the DataLoader
223
223
# --------------------------
224
224
#
225
- # We have loaded that dataset into the ``Dataloader `` and can iterate through the dataset as needed.
225
+ # We have loaded that dataset into the ``DataLoader `` and can iterate through the dataset as needed.
226
226
# Each iteration below returns a batch of ``train_features`` and ``train_labels`` (containing ``batch_size=64`` features and labels respectively).
227
227
# Because we specified ``shuffle=True``, after we iterate over all batches the data is shuffled (for finer-grained control over
228
228
# the data loading order, take a look at `Samplers <https://pytorch.org/docs/stable/data.html#data-loading-order-and-sampler>`_).
You can’t perform that action at this time.
0 commit comments