Skip to content

Commit 20ae984

Browse files
committed
Pushing the docs to dev/ for branch: main, commit 7c6e1e92712245233bf3bb576c3d7641986a6678
1 parent 1509456 commit 20ae984

File tree

1,313 files changed

+5765
-5759
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,313 files changed

+5765
-5759
lines changed

dev/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 91585ca81cc2d8daff4932e84dde160f
3+
config: 3677af6b215309d59907bf0f74a95855
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.

dev/_downloads/2da0534ab0e0c8241033bcc2d912e419/plot_classifier_comparison.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,15 @@
5858

5959
classifiers = [
6060
KNeighborsClassifier(3),
61-
SVC(kernel="linear", C=0.025),
62-
SVC(gamma=2, C=1),
63-
GaussianProcessClassifier(1.0 * RBF(1.0)),
64-
DecisionTreeClassifier(max_depth=5),
65-
RandomForestClassifier(max_depth=5, n_estimators=10, max_features=1),
66-
MLPClassifier(alpha=1, max_iter=1000),
67-
AdaBoostClassifier(),
61+
SVC(kernel="linear", C=0.025, random_state=42),
62+
SVC(gamma=2, C=1, random_state=42),
63+
GaussianProcessClassifier(1.0 * RBF(1.0), random_state=42),
64+
DecisionTreeClassifier(max_depth=5, random_state=42),
65+
RandomForestClassifier(
66+
max_depth=5, n_estimators=10, max_features=1, random_state=42
67+
),
68+
MLPClassifier(alpha=1, max_iter=1000, random_state=42),
69+
AdaBoostClassifier(random_state=42),
6870
GaussianNB(),
6971
QuadraticDiscriminantAnalysis(),
7072
]

0 commit comments

Comments
 (0)