Tag: Training Set
-
Cross Validation Explained

So far, when implementing all of our regression models in python, we have been using all of our data to construct our model: This, however, often leads to models which overfit our data and it becomes very difficult to evaluate and make improvements to our model. To address this problem, before creating our model, we…