From f0aebbe90d3b9b9bae5b7258f99370def1ee489f Mon Sep 17 00:00:00 2001 From: Martin Leduc <31558169+DecimalTurn@users.noreply.github.com> Date: Tue, 3 Sep 2024 03:09:23 -0400 Subject: [PATCH] Update number of acceptable classification errors. (#7026) * Update number of acceptable classification errors. * Update number of acceptable errors when using --all --- script/cross-validation | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/cross-validation b/script/cross-validation index 1821fc23fe..a47184e0ec 100755 --- a/script/cross-validation +++ b/script/cross-validation @@ -2,11 +2,11 @@ # Number of acceptable classification errors. # It should only be decreased. -ACCEPTABLE_ERRORS = 19 +ACCEPTABLE_ERRORS = 14 # Number of acceptable classification errors when using --all. # It should only be decreased. -ACCEPTABLE_ERRORS_ALL = 777 +ACCEPTABLE_ERRORS_ALL = 744 # Avoid buffering output. STDOUT.sync = true