13 Putting it all in practice - A real-life example of data engineering and machine learning
This chapter covers
- Cleaning up and preprocessing data to make it readable by our model.
- Using sklearn to train and evaluate several models.
- Using grid search to select good hyperparameters for our model.
- Using k-fold cross-validation to be able to use our data for training and validation simultaneously.
Throughout this book you’ve learned some of the most important algorithms in supervised learning, and you’ve had the chance to code them and use them to make predictions on several datasets. However, the process of training a model on real data requires several more steps, and this is what I show you in this chapter.