Update benchmark.ipynb

This commit is contained in:
Ricardo Montañana Gómez
2023-05-13 14:44:49 +02:00
committed by GitHub
parent 542bbce7db
commit 28dd04b95a

View File

@@ -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)"
]
},
{