We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf538b commit a2c99b6Copy full SHA for a2c99b6
1 file changed
README.rst
@@ -70,6 +70,8 @@ Let us incorporate another predictions, now with Naive Bayes classifier, and His
70
71
>>> nb = GaussianNB().fit(X_train, y_train)
72
>>> score(nb.predict(X_val), name='Naive Bayes')
73
+>>> hist = HistGradientBoostingClassifier().fit(X_train, y_train)
74
+>>> score(hist.predict(X_val), name='Hist. Grad. Boost. Tree')
75
<Perf(score_func=f1_score)>
76
Statistic with its standard error (se)
77
statistic (se)
0 commit comments