mrdbourke / pytorch-deep-learning

Materials for the Learn PyTorch for Deep Learning: Zero to Mastery course.
https://learnpytorch.io
MIT License
9.34k stars 2.78k forks source link

Fix typo 07_pytorch_experiment_tracking.ipynb #870

Closed NavdeepSinghKaur closed 3 months ago

NavdeepSinghKaur commented 3 months ago

In the sentence: "# Note: This is how a pretrained model would be created in torchvision < 0.13, it will be deprecated in future versions.\n", I have changed the '>' symbol to '<'.

Why: x > y means that x is bigger than y. x > y means that x is smaller than y.

That typo can confuse the reader.