Skip to content

Commit 00603e6

Browse files
authored
Merge pull request #321 from stanfordmlgroup/version-bump-0.4.1
release partial fit 0.4.1
2 parents cf16b0a + c74d1d8 commit 00603e6

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

RELEASE_NOTES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# RELEASE NOTES
22

3+
## Version 0.4.1
4+
### Added `partial_fit` method for incremental learning
5+
6+
NGBoost now includes a new `partial_fit` method that allows for incremental learning. This method appends new base models to the existing ones, which can be useful when new data becomes available over time or when the data is too large to fit in memory all at once.
7+
8+
The `partial_fit` method takes similar parameters to the `fit` method, including predictors `X`, outcomes `Y`, and validation sets `X_val` and `Y_val`. It also supports custom weights for the training and validation sets, as well as early stopping and custom loss monitoring.
9+
10+
Please note that the `partial_fit` method is not yet fully tested and may not work as expected in all cases. Use it with caution and thoroughly test its behavior in your specific use case before relying on it in production.
11+
312
## Version 0.4.0
413

514
* Added support for the gamma distribution

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ngboost"
3-
version = "0.4.0dev"
3+
version = "0.4.1dev"
44
description = "Library for probabilistic predictions via gradient boosting."
55
authors = ["Stanford ML Group <avati@cs.stanford.edu>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)