502: Preventing Overfitting with Holdout
- Published
- Author
Holdout
We have been using:
- Training data
Not representative of production.
We want to pretend like we are seeing new data:
- Hold back some data
???
When we train the model, we do so on some data. This is called training data.
Up to now, we have been using the same training data to measure our accuracy.
If we create a lookup table, our accuracy will be 100%. But this doesn’t generalise to new examples.
Read more