Uh oh!
There was an error while loading. Please reload this page.
[SPARK-6053][MLLIB] support save/load in PySpark's ALS - #4811
Conversation
SparkQA
commented
Feb 27, 2015
Test build #28056 has started for PR 4811 at commit
|
SparkQA
commented
Feb 27, 2015
Test build #28056 has finished for PR 4811 at commit
|
AmplabJenkins
commented
Feb 27, 2015
Test PASSed. |
jkbradley
commented
Feb 27, 2015
I messed up not passing sc to save/load. Is this patch going into 1.3? If not, then I'll submit a separate patch fixing the documentation (which will conflict a little). |
mengxr
commented
Feb 27, 2015
If we have couple days before RC2, this would be nice to have. We use the same API as in Scala/Java and there is no real implementation in this PR. Having save/load would benefit many users. |
SparkQA
commented
Feb 27, 2015
Test build #28088 has started for PR 4811 at commit
|
There was a problem hiding this comment.
Add sc to save call.
Also import MatrixFactorizationModel
SparkQA
commented
Feb 27, 2015
Test build #28088 has finished for PR 4811 at commit
|
AmplabJenkins
commented
Feb 27, 2015
Test PASSed. |
jkbradley
commented
Feb 27, 2015
LGTM. I ran into a bug running the example, but it seems to be coming from elsewhere. It happens when calling train---and not all the time, only sometimes: I'll make a separate JIRA for it. |
jkbradley
commented
Feb 27, 2015
Made JIRA: [https://issues.apache.org/jira/browse/SPARK-6071] |
SparkQA
commented
Mar 1, 2015
Test build #28151 has started for PR 4811 at commit
|
SparkQA
commented
Mar 1, 2015
Test build #28151 has finished for PR 4811 at commit
|
AmplabJenkins
commented
Mar 1, 2015
Test PASSed. |
jkbradley
commented
Mar 1, 2015
LGTM |
A simple wrapper to save/load `MatrixFactorizationModel` in Python. jkbradley Author: Xiangrui Meng <meng@databricks.com> Closes#4811 from mengxr/SPARK-5991 and squashes the following commits: f135dac [Xiangrui Meng] update save doc 57e5200 [Xiangrui Meng] address comments 06140a4 [Xiangrui Meng] Merge remote-tracking branch 'apache/master' into SPARK-5991282ec8d [Xiangrui Meng] support save/load in PySpark's ALS (cherry picked from commit aedbbaa) Signed-off-by: Xiangrui Meng <meng@databricks.com>
mengxr
commented
Mar 2, 2015
Merged into master and branch-1.3. Thanks! |
A simple wrapper to save/load
MatrixFactorizationModelin Python. @jkbradley