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

Feature/fix overflow exception when fitting large data #927

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on May 30, 2022

  1. Use diagonal instead of dense matrix for Weights

    Using a dense matrix leads to overflow exceptions for large `weights`
    vectors. It is unnecessary since the resulting matrix only contains
    diagonal elements.
    Adrian Walser committed May 30, 2022
    Configuration menu
    Copy the full SHA
    a46c7c9 View commit details
    Browse the repository at this point in the history
  2. Remove redundant parentheses

    Adrian Walser committed May 30, 2022
    Configuration menu
    Copy the full SHA
    c436f28 View commit details
    Browse the repository at this point in the history
  3. Calculate L-vector from weights directly

    Conditional expression is merged into conditional access pattern.
    Adrian Walser committed May 30, 2022
    Configuration menu
    Copy the full SHA
    94d58f8 View commit details
    Browse the repository at this point in the history