ResNet50

Learn to train a ResNet50 image classification model.

Note: The script in this lesson is not runnable due to a lack of GPU support.

The training process is straightforward because the PyTorch Image Model has its own configurable training script.

Organize the datasets into the following folder structure:

datasets
├── train
│   ├── class1
│   ├── class2
│   ├── class3
│   └── classN
└── val
    ├── class1
    ├── class2
    ├── class3
    └── classN

We’ve included the training script and our custom models under the app folder. Let’s look at the following interactive terminal:

Get hands-on with 1200+ tech skills courses.