From e897c9e34601f619242d78afafea6c77ab821013 Mon Sep 17 00:00:00 2001 From: ACCakut <7684542+ACCakut@users.noreply.github.com> Date: Thu, 14 Mar 2024 11:23:20 +0100 Subject: [PATCH] Fix typo in cross_validation_stratification.py (#770) --- python_scripts/cross_validation_stratification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_scripts/cross_validation_stratification.py b/python_scripts/cross_validation_stratification.py index 4acad6a36..ad39bdb3f 100644 --- a/python_scripts/cross_validation_stratification.py +++ b/python_scripts/cross_validation_stratification.py @@ -54,7 +54,7 @@ # By defining three splits, we will use three samples for testing and six for # training each time. `KFold` does not shuffle by default. It means that it will # select the three first samples for the testing set at the first split, then -# the three next three samples for the second split, and the three next for the +# the next three samples for the second split, and the three next for the # last split. In the end, all samples have been used in testing at least once # among the different splits. #