Tutorial: PyTorch Tutorial List
Preparation for PyTorch Tutorial
PyTorch Installation
Install PyTorch
Follow the installatin instruction: See here for more detail
You should install pytorch in a virtual environment
Check PyTorch Installation and GPU
In the Anaconda Promt, type
conda activate py39
python
import torch
torch.__version__
print("cuda" if torch.cuda.is_available() else "cpu")
Watch PyTorch Intro Video
Introduction to PyTorch (20min)
You need to know 'What is Tensor in Pytorch'
Follow Quick-Start Tutorial:
DLIP Course Tutorials
MLP
CNN- Classification
Create a simple CNN model
Using Popular CNN models from torchvision.models
Assignment: Classification
CNN- Object Detection
YOLO v8 in PyTorch
YOLO v5 in PyTorch
T4-1(option1): Pretrained YOLOv5 with COCO dataset (in CoLab)
T4-1(option2): Pretrained YOLOv5 with COCO dataset (in VS Code, Local PC)
T4-2: Train YOLOv5 with a Custom Dataset (in VS Code, Local PC)
Useful Sites
Pytorch tutorial codes: Pytorch-Tutorial
Pytorch Tutorial List: PyTorch Tutorial List
Last updated
Was this helpful?