The doc of sklearn.model_selection.GridSearchCV
says
Estimator that was chosen by the search, i.e. estimator which gave highest score (or smallest loss if specified) on the left out data. Not available if refit=False.
...
The parameters selected are those that maximize the score of the left out data, unless an explicit score is passed in which case it is used instead.
lots people of SO also use this term.
What is "the left out data"? Is it the left out part of cross-validation, for instance, 1/10 of the dataset?
How the data is being left out by sklearn.model_selection.GridSearchCV
?