Definition
Cross-validation is a technique for evaluating the real performance of an ML model by dividing data into parts (folds) and using each in turn as a test set. It provides a more reliable performance estimate than a single train/test split. It is an essential practice to avoid deploying models that only work on development data.
Related terms
EXPLORE