Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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: 2 additions & 2 deletions doc/changes/0.5.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _changes_0_5:

Version 0.5 (in progress)
-------------------------
Version 0.5 (29/072025)
-----------------------
- Add support for fitting an intercept in :ref:`SqrtLasso <skglm.experimental.SqrtLasso>` (PR: :gh:`298`)
- Add experimental :ref:`QuantileHuber <skglm.experimental.QuantileHuber>` and :ref:`SmoothQuantileRegressor <skglm.experimental.SmoothQuantileRegressor>` for quantile regression (PR: :gh:`312`).
- Add :ref:`GeneralizedLinearEstimatorCV <skglm.GeneralizedLinearEstimatorCV>` for cross-validation with automatic parameter selection for L1 and elastic-net penalties (PR: :gh:`299`)
Expand Down
10 changes: 10 additions & 0 deletions doc/changes/0.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _changes_0_5:

Version 0.6 (in progress)
-------------------------
- Add support for fitting an intercept in :ref:`SqrtLasso <skglm.experimental.SqrtLasso>` (PR: :gh:`298`)
- Add experimental :ref:`QuantileHuber <skglm.experimental.QuantileHuber>` and :ref:`SmoothQuantileRegressor <skglm.experimental.SmoothQuantileRegressor>` for quantile regression (PR: :gh:`312`).
- Add :ref:`GeneralizedLinearEstimatorCV <skglm.GeneralizedLinearEstimatorCV>` for cross-validation with automatic parameter selection for L1 and elastic-net penalties (PR: :gh:`299`)
- Add :ref:`PoissonGroup <skglm.datafits.PoissonGroup>` datafit for group-structured Poisson regression (PR: :gh:`317`)
- Add :ref:`GraphicalLasso <skglm.GraphicalLasso>` for sparse inverse covariance estimation with both primal and dual algorithms (PR: :gh:`280`)
- Add :ref:`AdaptiveGraphicalLasso <skglm.AdaptiveGraphicalLasso>` for non-convex penalty variations using iterative reweighting strategy (PR: :gh:`280`)
2 changes: 2 additions & 0 deletions doc/changes/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ What's new

.. currentmodule:: skglm

.. include:: 0.6.rst

.. include:: 0.5.rst

.. include:: 0.4.rst
Expand Down
2 changes: 1 addition & 1 deletion skglm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.5dev'
__version__ = '0.6dev'

from skglm.estimators import ( # noqa F401
Lasso, WeightedLasso, ElasticNet, MCPRegression, MultiTaskLasso, LinearSVC,
Expand Down