-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-9837] [ML] R-like summary statistics for GLMs via iteratively reweighted least squares #11694
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
Conversation
|
Test build #53066 has finished for PR 11694 at commit
|
|
Test build #53067 has finished for PR 11694 at commit
|
|
|
||
| new IterativelyReweightedLeastSquaresModel(model.coefficients, model.intercept) | ||
| new IterativelyReweightedLeastSquaresModel(model.coefficients, | ||
| model.intercept, model.diagInvAtWA, iter) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new IterativelyReweightedLeastSquaresModel(
model.coefficients, model.intercept, model.diagInvAtWA, iter)|
I made one pass and left some minor comments line. This looks great overall! |
|
Test build #53269 has finished for PR 11694 at commit
|
|
LGTM. Merged into master. Thanks! |
…eweighted least squares ## What changes were proposed in this pull request? Provide R-like summary statistics for GLMs via iteratively reweighted least squares. ## How was this patch tested? unit tests. Author: Yanbo Liang <[email protected]> Closes apache#11694 from yanboliang/spark-9837.
What changes were proposed in this pull request?
Provide R-like summary statistics for GLMs via iteratively reweighted least squares.
How was this patch tested?
unit tests.