Skip to main content

Unit for fit_time and score_time in sklearn cross_validate

in the sklearn's documentation they state:

fit_time The time for fitting the estimator on the train set for each cv split.

score_time The time for scoring the estimator on the test set for each cv split. (Note time for scoring on the train set is not included even if return_train_score is set to True

Ok, but does anyone actually know the units of these answers? My best guess is that they are in seconds by the execution time of my cross validations, but I am still unsure.



source https://stackoverflow.com/questions/73548091/unit-for-fit-time-and-score-time-in-sklearn-cross-validate

Comments