From 28dd04b95a9514998e1741b4f703691428f4e529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Sat, 13 May 2023 14:44:49 +0200 Subject: [PATCH] Update benchmark.ipynb --- notebooks/benchmark.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/benchmark.ipynb b/notebooks/benchmark.ipynb index 8dbb2d4..47e78e9 100644 --- a/notebooks/benchmark.ipynb +++ b/notebooks/benchmark.ipynb @@ -178,7 +178,7 @@ "outputs": [], "source": [ "# Stree\n", - "stree = Stree(random_state=random_state, C=.01, max_iter=1e3, kernel=\"liblinear\", multiclass_strategy=\"ovr\")" + "stree = Stree(random_state=random_state, C=.01, max_iter=1000, kernel=\"liblinear\", multiclass_strategy=\"ovr\")" ] }, { @@ -198,7 +198,7 @@ "outputs": [], "source": [ "# SVC (linear)\n", - "svc = LinearSVC(random_state=random_state, C=.01, max_iter=1e3)" + "svc = LinearSVC(random_state=random_state, C=.01, max_iter=1000)" ] }, {