Train ConvNet using CIFAR10
Training an image classifier
Data Loading
import torch
import torchvision
import torchvision.transforms as transformsDownload General Dataset
Use Downloaded General Dataset
User Defined Dataset
Load and Show images(tensor, color)
Define Model
Define Loss function and Optimization
Train the network
Save model
Test the network
Show some ground truth of test data
Overall accuracy
Evaluate each class
Exercise
Last updated