-
Notifications
You must be signed in to change notification settings - Fork 323
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
Improve STLSQ #36
Labels
Comments
This was already a feature in the upstream repo |
This needs to be fixed for the other optimizers as well. |
Fixed in #39 |
jpcurbelo
pushed a commit
to jpcurbelo/pysindy_fork
that referenced
this issue
May 9, 2024
Add CustomLSTM tutorial (part of dynamicslab#36 and dynamicslab#64)
jpcurbelo
pushed a commit
to jpcurbelo/pysindy_fork
that referenced
this issue
May 9, 2024
…dynamicslab#69) * added finetuning notebook dynamicslab#36, fixed missing links in docs * Apply suggestions from code review Co-authored-by: Martin Gauch <15731649+gauchm@users.noreply.github.com> Co-authored-by: Martin Gauch <15731649+gauchm@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Setting the
alpha
(L2 regularization) parameter for theSTLSQ
optimizer improves the condition number of the least-squares problems that are solved, leading to better overall results when features are close to linearly dependent. However, it adds some bias to the learned coefficients (toward 0). We should consider modifyingSTLSQ
(and maybe some of our other methods) by changing it to a two-step procedure whenalpha
is positive:The text was updated successfully, but these errors were encountered: