Skip to content

Commit 3f833cd

Browse files
edit what's new, and api
1 parent c9d1545 commit 3f833cd

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

doc/api.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ Estimators
3030
WeightedLasso
3131

3232

33+
Covariance
34+
==========
35+
36+
.. currentmodule:: skglm
37+
38+
.. autosummary::
39+
:toctree: generated/
40+
41+
GraphicalLasso
42+
AdaptiveGraphicalLasso
43+
44+
3345
Penalties
3446
=========
3547

doc/changes/0.5.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ Version 0.5 (in progress)
55
- Add support for fitting an intercept in :ref:`SqrtLasso <skglm.experimental.sqrt_lasso.SqrtLasso>` (PR: :gh:`298`)
66
- Add experimental :ref:`QuantileHuber <skglm.experimental.quantile_huber.QuantileHuber>` and :ref:`SmoothQuantileRegressor <skglm.experimental.quantile_huber.SmoothQuantileRegressor>` for quantile regression, and an example script (PR: :gh:`312`).
77
- Add :ref:`GeneralizedLinearEstimatorCV <skglm.cv.GeneralizedLinearEstimatorCV>` for cross-validation with automatic parameter selection for L1 and elastic-net penalties (PR: :gh:`299`)
8+
- Add :ref:`GraphicalLasso <skglm.covariance.GraphicalLasso>` for sparse inverse covariance estimation with both primal and dual algorithms
9+
- Add :ref:`AdaptiveGraphicalLasso <skglm.covariance.AdaptiveGraphicalLasso>` for non-convex penalty variations using iterative reweighting strategy
10+
- Add example demonstrating regularization paths for Graphical Lasso and its adaptive variations

skglm/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
SparseLogisticRegression, GeneralizedLinearEstimator, CoxEstimator, GroupLasso,
66
)
77
from .cv import GeneralizedLinearEstimatorCV # noqa F401
8+
from .covariance import GraphicalLasso, AdaptiveGraphicalLasso # noqa F401

0 commit comments

Comments
 (0)