testsize
Testsize is a term used in data science to describe the portion of a dataset reserved for evaluating a model, typically in the context of a train–test split. In many machine learning libraries, the related parameter is named test_size and can be given as a float between 0 and 1 (representing a fraction of the data) or as an explicit integer (representing a number of samples). The exact interpretation depends on the library but the core idea is the same: specify how much data will be held out for testing.
In a holdout validation workflow, the data are partitioned into a training set and a test set.
Practical considerations include ensuring reproducibility by fixing a random seed, using stratified sampling for imbalanced classes,