July 2020
Intermediate to advanced
520 pages
15h 29m
English
This chapter covers
DataLoaders to load dataIn 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 transformed our raw CT scans into a PyTorch Dataset instance. Now that we have a dataset, we can easily consume our training data. So let’s do that!
We’re going to do two main things in this chapter. We’ll start by building the nodule classification ...