What is the difference between Train Test Split and Holdout?

From what I've researched, both divide the set into two training and test subsets. Is there any difference between the two?

Author: Maniero, 2018-11-14

1 answers

No. Hold out is literally "hiding" part of the dataset, which we do in sklearn or similar libraries using train_test_split. Terms are interchangeable.

Take a look at the use of the term in the SKLearn cross-validation documentation.

 1
Author: Cassiano, 2019-01-30 15:24:45