-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-2993] [MLLib] colStats (wrapper around MultivariateStatisticalSummary) in Statistics #1911
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
|
QA tests have started for PR 1911. This patch merges cleanly. |
|
QA results for PR 1911: |
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.
@DeveloperApi?
|
QA tests have started for PR 1911. This patch merges cleanly. |
|
QA results for PR 1911: |
|
QA tests have started for PR 1911. This patch merges cleanly. |
|
QA results for PR 1911: |
|
Jenkins, retest this please. |
|
QA tests have started for PR 1911. This patch merges cleanly. |
|
QA results for PR 1911: |
|
LGTM. Merged into both master and branch-1.1. Thanks for adding this and cleaning |
…Summary) in Statistics For both Scala and Python. The ser/de util functions were moved out of `PythonMLLibAPI` and into their own object to avoid creating the `PythonMLLibAPI` object inside of `MultivariateStatisticalSummarySerialized`, which is then referenced inside of a method in `PythonMLLibAPI`. `MultivariateStatisticalSummarySerialized` was created to serialize the `Vector` fields in `MultivariateStatisticalSummary`. Author: Doris Xin <[email protected]> Closes #1911 from dorx/colStats and squashes the following commits: 77b9924 [Doris Xin] developerAPI tag de9cbbe [Doris Xin] reviewer comments and moved more ser/de 459faba [Doris Xin] colStats in Statistics for both Scala and Python (cherry picked from commit fe47359) Signed-off-by: Xiangrui Meng <[email protected]>
…Summary) in Statistics For both Scala and Python. The ser/de util functions were moved out of `PythonMLLibAPI` and into their own object to avoid creating the `PythonMLLibAPI` object inside of `MultivariateStatisticalSummarySerialized`, which is then referenced inside of a method in `PythonMLLibAPI`. `MultivariateStatisticalSummarySerialized` was created to serialize the `Vector` fields in `MultivariateStatisticalSummary`. Author: Doris Xin <[email protected]> Closes apache#1911 from dorx/colStats and squashes the following commits: 77b9924 [Doris Xin] developerAPI tag de9cbbe [Doris Xin] reviewer comments and moved more ser/de 459faba [Doris Xin] colStats in Statistics for both Scala and Python
Co-authored-by: Russell Spitzer <[email protected]>
For both Scala and Python.
The ser/de util functions were moved out of
PythonMLLibAPIand into their own object to avoid creating thePythonMLLibAPIobject inside ofMultivariateStatisticalSummarySerialized, which is then referenced inside of a method inPythonMLLibAPI.MultivariateStatisticalSummarySerializedwas created to serialize theVectorfields inMultivariateStatisticalSummary.