Tutorial: PyTorch Tutorial List
Preparation for PyTorch Tutorial
PyTorch Installation
Install PyTorch
Check PyTorch Installation and GPU
conda activate py39
python
import torch
torch.__version__
print("cuda" if torch.cuda.is_available() else "cpu")Watch PyTorch Intro Video
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
Useful Sites
Last updated