Uh oh!
There was an error while loading. Please reload this page.
[SPARK-5012][MLLib][PySpark]Python API for Gaussian Mixture Model - #4059
[SPARK-5012][MLLib][PySpark]Python API for Gaussian Mixture Model#4059FlytxtRnD wants to merge 18 commits into
Conversation
AmplabJenkins
commented
Jan 15, 2015
Can one of the admins verify this patch? |
mengxr
commented
Jan 15, 2015
add to whitelist |
SparkQA
commented
Jan 15, 2015
Test build #25609 has started for PR 4059 at commit
|
SparkQA
commented
Jan 15, 2015
Test build #25609 has finished for PR 4059 at commit
|
AmplabJenkins
commented
Jan 15, 2015
Test FAILed. |
jkbradley
commented
Jan 15, 2015
@FlytxtRnD Are you still running into the py4j serialization issue you mentioned on the JIRA? |
FlytxtRnD
commented
Jan 16, 2015
@jkbradley py4j serialization issue has been solved by the commit 8ead999 |
SparkQA
commented
Jan 16, 2015
Test build #25634 has started for PR 4059 at commit
|
SparkQA
commented
Jan 16, 2015
Test build #25634 has finished for PR 4059 at commit
|
AmplabJenkins
commented
Jan 16, 2015
Test FAILed. |
…ter' into PythonGmmWrapper
…nGmmWrapper' into PythonGmmWrapper Conflicts: examples/src/main/python/mllib/gaussian_mixture_model.py
SparkQA
commented
Jan 16, 2015
Test build #25648 has started for PR 4059 at commit
|
SparkQA
commented
Jan 16, 2015
Test build #25648 has finished for PR 4059 at commit
|
AmplabJenkins
commented
Jan 16, 2015
Test PASSed. |
…ter' into PythonGmmWrapper
There was a problem hiding this comment.
separate spark imports from python imports
FlytxtRnD
commented
Jan 23, 2015
SparkQA
commented
Feb 2, 2015
Test build #26509 has started for PR 4059 at commit
|
SparkQA
commented
Feb 2, 2015
Test build #26509 has finished for PR 4059 at commit
|
AmplabJenkins
commented
Feb 2, 2015
Test FAILed. |
FlytxtRnD
commented
Feb 2, 2015
Is it possible to start a test build in Jenkins without updating the PR? TestResults shows "no failures" but the console output shows errors. All tests were passed when ran locally. |
SparkQA
commented
Feb 2, 2015
Test build #26515 has started for PR 4059 at commit
|
SparkQA
commented
Feb 2, 2015
Test build #26515 has finished for PR 4059 at commit
|
AmplabJenkins
commented
Feb 2, 2015
Test PASSed. |
FlytxtRnD
commented
Feb 2, 2015
Please review and merge.. |
There was a problem hiding this comment.
The default seed is not generated. If users don't specify seed on the Python side, it will pass in as null on the JVM side.
if (seed != null) gmmAlg.setSeed(seed)
There was a problem hiding this comment.
In python side I have added a default value None ..So is it required to add this statement
SparkQA
commented
Feb 3, 2015
Test build #26607 has started for PR 4059 at commit
|
SparkQA
commented
Feb 3, 2015
Test build #26607 has finished for PR 4059 at commit
|
AmplabJenkins
commented
Feb 3, 2015
Test PASSed. |
mengxr
commented
Feb 3, 2015
LGTM. Merged into master. Thanks for adding GMM Python API! |
FlytxtRnD
commented
Feb 3, 2015
Thanks @mengxr for your help. |
Python API for the Gaussian Mixture Model clustering algorithm in MLLib.