chapter eleven
This chapter covers:
- Using
DataLoaders to load data fromDatasets with multiple child processes
- Implementing an introductory model that performs step 3, classification
- Setting up the basic skeleton for our training and validation application that loops per epoch, and feeds the model data from the training and validation
Datasets
- Logging and displaying metrics that describe model performance and evaluating model performance using those metrics
In the previous chapters we set the stage for our cancer detection project. We covered medical details of lung cancer, took a look at the main data sources we will use for our project, and implemented transforming our raw CT scans into a PyTorch Dataset that allows us to easily consume that data.
So let’s do that!