Skip to content

Commit 1e65aa2

Browse files
committed
Add news
1 parent 7707ce3 commit 1e65aa2

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
+++
2+
title = "Release 0.8.0"
3+
date = "2025-09-30"
4+
+++
5+
6+
Besides Bernouilli naive bayes classifier and bootstrap aggregation algorithm, most notably Linfa's 0.8.0 release brings support for `ndarray` 0.16.
7+
8+
<!-- more -->
9+
10+
## Improvements and fixes
11+
12+
* add `max_features` and `tokenizer_function` to `CountVectorizer` in `linfa-preprocessing`
13+
* add `predict_proba()` to `Gaussian mixture model` in `linfa-clustering`
14+
* add `predict_proba()` and `predict_log_proba()` to algorithms in `linfa-bayes`
15+
* add target names to `dataset`
16+
* fix SVR parameterization in `linfa-svm`
17+
* fix serde support for algorithms in `linfa-pls`
18+
* fix confusion matrix: use predicted and ground thruth labels, make it reproducible
19+
* fix dataset names after shuffling
20+
* bump `ndarray` to 0.16, `argmin` to 0.11.0, `kdtree` to 0.7.0, statrs to `0.18`, sprs to `0.11`
21+
* bump MSRV to 1.87.0
22+
23+
## New algorithms
24+
25+
### Bernouilli Naive Bayes
26+
27+
Naive Bayes for Bernouilli models is a classification algorithm for data that is distributed according to multivariate Bernoulli distributions;
28+
i.e., there may be multiple features but each one is assumed to be a binary-valued (Bernoulli, boolean) variable.
29+
30+
See [scikit-learn.naive_bayes](https://scikit-learn.org/stable/modules/naive_bayes.html)
31+
32+
### Bootstrap aggregation
33+
34+
In ensemble algorithms, bagging (Bootstrap aggregating) methods form a class of algorithms which build several instances of a black-box
35+
estimator on random subsets of the original training set and then aggregate their individual predictions to form a final prediction.
36+
37+
See [sklearn.ensemble](https://scikit-learn.org/stable/modules/ensemble.html)

0 commit comments

Comments
 (0)