We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think, the comments https://github.com/Quantco/glum/blame/main/src/glum/_cd_fast.pyx#L115_L116 need to be updated. I guess the definition of the argument q changed during some code optimization from q = X^T y to q = X^T (y - X w) which corresponds to q= -grad = -X^T grad_per_row.
q
q = X^T y
q = X^T (y - X w)
q= -grad = -X^T grad_per_row
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think, the comments https://github.com/Quantco/glum/blame/main/src/glum/_cd_fast.pyx#L115_L116 need to be updated.
I guess the definition of the argument
q
changed during some code optimization fromq = X^T y
toq = X^T (y - X w)
which corresponds toq= -grad = -X^T grad_per_row
.The text was updated successfully, but these errors were encountered: