Skip to content

Commit a2c99b6

Browse files
committed
Readme
1 parent 2bf538b commit a2c99b6

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ Let us incorporate another predictions, now with Naive Bayes classifier, and His
7070

7171
>>> nb = GaussianNB().fit(X_train, y_train)
7272
>>> 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')
7375
<Perf(score_func=f1_score)>
7476
Statistic with its standard error (se)
7577
statistic (se)

0 commit comments

Comments
 (0)