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

Assignment: Classification

CNN- Object Detection

YOLO v8 in PyTorch

YOLO v5 in PyTorch


Useful Sites

Pytorch tutorial codes: Pytorch-Tutorial

Pytorch Tutorial List: PyTorch Tutorial List

Last updated