Skip to content

Commit

Permalink
Merge pull request #523 from oooo26/master
Browse files Browse the repository at this point in the history
Update changelog
  • Loading branch information
oooo26 authored Sep 12, 2023
2 parents e4fba50 + b136afc commit d5dc108
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,13 @@ $ Rscript abess/docs/simulation/R/timings.R

## What's news

New features version `4.7`:

- Support limiting beta into a range by clipping method. One application is to perform non-negative fitting.
- Support no-intercept model for most regressors in ``abess.linear`` with argument ``fit_intercept=False``. We assume that the data has been centered for these models.
- Support AUC criterion for Logistic and Multinomial Regression.


New features version `4.6`:

- Support no-intercept model for most regressors in `abess.linear` with argument `fit_intercept=False`. We assume that the data has been centered for these models. (Python)
Expand Down
19 changes: 14 additions & 5 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,35 @@ Unreleased
----------

- Python package
- R package

- Use `CMake <https://cmake.org/>`__ on compiling to increase scalability.
- Support no-intercept model for most regressors in `abess.linear` with argument `fit_intercept=False`. We assume that the data has been centered for these models.
- abess can be used in mlr3extralearners, a package like scikit-learn. Please see `mlr3extralearners <https://github.com/mlr-org/mlr3extralearners/>`__ for usage.

Version 0.4.7
-------------

- R package
- Python package

- abess can be used in mlr3extralearners, a package like scikit-learn. Please see `mlr3extralearners <https://github.com/mlr-org/mlr3extralearners/>`__ for usage.
- Support no-intercept model for most regressors in ``abess.linear`` with argument ``fit_intercept=False``. We assume that the data has been centered for these models.
- Use `CMake <https://cmake.org/>`__ on compiling to increase scalability.

- C++

- Support limiting beta into a range by clipping method. One application is to perform non-negative fitting.
- Support AUC criterion for Logistic and Multinomial Regression.

Version 0.4.6
-------------

- R package
- Python package

- Support `score` function for all GLM estimators.
- Support ``score`` function for all GLM estimators.
- Rearrange some arguments to improve legibility.
Please check `here <https://abess.readthedocs.io/en/latest/Python-package/index.html>`__ for the latest API.
- Better docstring, e.g. move important arguments to the front.
- Combine `metrics.py` and `functions.py`.
- Combine ``metrics.py`` and ``functions.py``.

- C++

Expand Down
2 changes: 1 addition & 1 deletion python/abess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# @Site :
# @File : __init__.py

__version__ = "0.4.7rc1"
__version__ = "0.4.7"
__author__ = ("Jin Zhu, Kangkang Jiang, "
"Junhao Huang, Yanhang Zhang, "
"Yanhang Zhang, Shiyun Lin, "
Expand Down

0 comments on commit d5dc108

Please sign in to comment.