Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX docstring GroupLasso #241

Merged
merged 2 commits into from
Apr 4, 2024
Merged
Changes from all 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
5 changes: 2 additions & 3 deletions skglm/estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1547,11 +1547,10 @@ class GroupLasso(LinearModel, RegressorMixin):
The optimization objective for GroupLasso is:

.. math::
1 / (2 xx n_"samples") \sum_g ||y - X_{[g]} w_{[g]}||_2 ^ 2 + alpha \sum_g
1 / (2 xx n_"samples") ||y - X w||_2 ^ 2 + alpha \sum_g
weights_g ||w_{[g]}||_2

with :math:`w_{[g]}` (respectively :math:`X_{[g]}`) being the coefficients
(respectively the columns) of the g-th group.
with :math:`w_{[g]}` the coefficients of the g-th group.

Parameters
----------
Expand Down
Loading