Solved – Repeatedly split data in training (0.75) and test (0.25) for cross validation

cross-validationmodel-evaluationpartitioningvalidation

What kind of cross validation is it called when we randomly split the data into 0.75 training and 0.25 test data set. And this split is done 1000 times.

Best Answer

This is frequently referred to as repeated training-test split, or leave-group-out cross-validation, or Monte Carlo cross-validation$^1$. Note that this should be done with more splits than regular CV (which would have e.g. 10 partitions) - so you doing it 1000 times is a good idea.

$^1$ See e.g. Applied Predictive Modeling by Kuhn and Johnson, Springer, 2013.