Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/releases/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
- The `tags` and `more_tags` properties of `base.Estimator` are now both a set of strings.
- The `base` module is now fully type-annotated. Some type hints have changed, but this does not impact the behaviour of the code. For instance, the regression target is now indicated as a float instead of a Number.
- `base.Ensemble`, `base.Wrapper`, and `base.WrapperEnsemble` became generic with regard to the type they encapsulate.

## neighbors

- Added `neighbors.SAMkNNClassifier` implementing the SAM-kNN Classifier
2 changes: 2 additions & 0 deletions river/neighbors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@
from .knn_classifier import KNNClassifier
from .knn_regressor import KNNRegressor
from .lazy import LazySearch
from .samknn_classifier import SAMkNNClassifier

__all__ = [
"LazySearch",
"KNNClassifier",
"SAMkNNClassifier",
"KNNRegressor",
"SWINN",
]
Loading