Learning Curves
Learning Curves help us evaluate the performance of the model and make necessary decisions. This lesson covers concepts about Learning Curves.
We'll cover the following...
Learning Curves
In the previous lessons, we trained our model on the training dataset and tested the trained model on the testing dataset. In the lessons on Regression Problems, we introduced another dataset named validation dataset. This validation dataset is also called a development dataset, as it is used during the development of a model. We have covered the intuition behind using the validation dataset. Let’s look at some Learning Curve plots that illustrate the model’s performance on the training and validation datasets and help avoid overfitting and other problems. Consider: how long should the model be trained? What is the size of the training ...