-
-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 0.22.0 - 2024-11-23 | ||
|
||
- Dropped support for Python 3.9 and added support for Python 3.13. | ||
- The methods `learn_one`, `learn_many`, `update`, `revert`, and `append` now return `None`. | ||
- The units used in River have been corrected to be based on powers of 2 (KiB, MiB). This only changes the display, the behaviour is unchanged. | ||
|
||
## cluster | ||
|
||
- Update the description of `cluster.ODAC`. | ||
- Change `draw` in `cluster.ODAC` to draw the hierarchical cluster's structure as a Graphviz graph. | ||
- Add `render_ascii` in `cluster.ODAC` to render the hierarchical cluster's structure in text format. | ||
- Work with `stats.Var` in `cluster.ODAC` when cluster has only one time series. | ||
|
||
## drift | ||
|
||
- Make `drift.ADWIN` comply with the reference MOA implementation. | ||
|
||
## feature extraction | ||
|
||
- The mini-batch methods for `feature_extraction.TFIDF` now systematically raise an exception, as they are not implemented. | ||
|
||
## stats | ||
|
||
- Removed the unexported class `stats.CentralMoments`. | ||
|
||
## tree | ||
|
||
- Instead of letting trees grow indefinitely, setting the `max_depth` parameter to `None` will stop the trees from growing when they reach the system recursion limit. | ||
- Added `tree.LASTClassifier` (Local Adaptive Streaming Tree Classifier). | ||
|
||
## stream | ||
|
||
- `stream.iter_arff` now supports blank values (treated as missing values). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1 @@ | ||
# Unreleased | ||
|
||
- The units used in River have been corrected to be based on powers of 2 (KiB, MiB). This only changes the display, the behaviour is unchanged. | ||
- The methods `learn_one`, `learn_many`, `update`, `revert`, and `append` now return `None`. | ||
- Dropped support for Python 3.9 and added support for Python 3.13. | ||
|
||
## cluster | ||
|
||
- Update the description of `cluster.ODAC`. | ||
- Change `draw` in `cluster.ODAC` to draw the hierarchical cluster's structure as a Graphviz graph. | ||
- Add `render_ascii` in `cluster.ODAC` to render the hierarchical cluster's structure in text format. | ||
- Work with `stats.Var` in `cluster.ODAC` when cluster has only one time series. | ||
|
||
## drift | ||
|
||
- Make `drift.ADWIN` comply with the reference MOA implementation. | ||
|
||
## feature extraction | ||
|
||
- The mini-batch methods for `feature_extraction.TFIDF` now systematically raise an exception, as they are not implemented. | ||
|
||
## stats | ||
|
||
- Removed the unexported class `stats.CentralMoments`. | ||
|
||
## tree | ||
|
||
- Instead of letting trees grow indefinitely, setting the `max_depth` parameter to `None` will stop the trees from growing when they reach the system recursion limit. | ||
- Added `tree.LASTClassifier` (Local Adaptive Streaming Tree Classifier). | ||
|
||
## stream | ||
|
||
- `stream.iter_arff` now supports blank values (treated as missing values). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from __future__ import annotations | ||
|
||
__version__ = "0.21.2" | ||
__version__ = "0.22.0" |