Statistics for Evaluating Machine Learning Models
Last Updated on August 14, 2020
Tom Mitchell’s classic 1997 book “Machine Learning” provides a chapter dedicated to statistical methods for evaluating machine learning models.
Statistics provides an important set of tools used at each step of a machine learning project. A practitioner cannot effectively evaluate the skill of a machine learning model without using statistical methods. Unfortunately, statistics is an area that is foreign to most developers and computer science graduates. This makes the chapter in Mitchell’s seminal machine learning text an important, if not required, reading by practitioners.
In this post, you will discover statistical methods recommended by Mitchel to evaluate and compare machine learning models.
After reading this post, you will know:
- How to calculate confidence intervals for classification accuracy or error.
- The statistical foundation for calculating confidence intervals.
- How to generally compare the performance of machine learning algorithms.
Kick-start your project with my new book Statistics for Machine Learning, including step-by-step tutorials and the Python source code files for all examples.
Let’s get started.