Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions tutorials/2-examples/DTEx211_MNIST.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -984,11 +984,7 @@
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Finally, you can proceed with the training.\n",
"\n",
"The training process can be quite slow (several hours on GPU) because the augmented images are used only once during the training. You can speed it up by reducing the numebr of epochs and decreasing the `replace` parameter used in the dataset."
]
"source": "Finally, you can proceed with the training.\n\nThe training process can be slow on some machines because the augmented images are regenerated every time they are accessed, rather than precomputed and reused. You can reduce `max_epochs` to shorten the total training time, decrease the `replace` parameter used in the dataset to trade off augmentation diversity for speed, or increase `num_workers` in the data loaders above to parallelize data loading and augmentation across CPU cores."
},
{
"cell_type": "code",
Expand Down Expand Up @@ -1538,4 +1534,4 @@
},
"nbformat": 4,
"nbformat_minor": 4
}
}
Loading