tutorials
tutorials copied to clipboard
PyTorch tutorials.
Fix a small typo in a comment about activations. cc @svekars @sekyondaMeta @AlannaBurke
Replace deprecated dist_tuto.html links with current recommended resources: - Link to PyTorch Distributed Overview for process group setup - Link to official torch.distributed docs instead of old tutorial Fixes #3526...
There is the following issue on this page: https://docs.pytorch.org/tutorials/beginner/colab.html The content in this page clearly shows how to upload or download your dataset into your Google Drive or your Desktop
Move checkpoint_future.result() before optimizer.step() to ensure the previous checkpoint completes before weights are modified in-place. This allows better overlap of checkpointing with forward/backward passes. Fixes #3584 ## Description ## Checklist...
Hey there! Little nitpick about the last block of this docs page: https://docs.pytorch.org/tutorials/recipes/distributed_async_checkpoint_recipe.html The `checkpoint_future` variable is never written to in the last block. Perhaps the intent was to have...
The previous comment 'Cache the tensor representation of the labels' was misleading, especially for beginners. The code actually creates a numerical representation by storing unique labels in alphabetical order and...
There is the following issue on this page: https://docs.pytorch.org/tutorials/beginner/basics/tensorqs_tutorial.html Hello, I just finished the tutorial on tensors, and I think it's really well written. However, I have a question. There...
There is the following issue on this page: https://docs.pytorch.org/tutorials/intermediate/realtime_rpi.html I have a YOLO like model which I used QAT and the quantized model is very slow. It is slower 4...
There is the following issue on this page: https://docs.pytorch.org/tutorials/beginner/basics/data_tutorial.html In the subsection explaining the __get__item() function, the second line of the rewritten function is `image = read_image(img_path)` but this seems...
There is the following issue on this page: https://docs.pytorch.org/tutorials/beginner/nn_tutorial.html In the section "Neural net from scratch (without torch.nn)" there is a pre-training loss function evaluation on a batch of 64...