Instead of Train and Test we now split the Data into Train, Validation, and Test Sets.
For instance, we can have 50% Train, 20% Validation, 30% Test.
The model is trained on the Train set, and loss is determined by the validation set to guide hyperparameter tuning. For example, in NN would be tuned on the validation set.
Drawbacks
- High Variance
- Inefficient Use of Data
- Single Evaluation
- Overfitting Risk