Skip to content
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

[SPARK-6571][MLLIB] use wrapper in MatrixFactorizationModel.load #5243

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.spark.mllib.api.python

import org.apache.spark.api.java.JavaRDD
import org.apache.spark.mllib.recommendation.{MatrixFactorizationModel, Rating}
import org.apache.spark.rdd.RDD

/**
* A Wrapper of MatrixFactorizationModel to provide helper method for Python.
*/
private[python] class MatrixFactorizationModelWrapper(model: MatrixFactorizationModel)
extends MatrixFactorizationModel(model.rank, model.userFeatures, model.productFeatures) {

def predict(userAndProducts: JavaRDD[Array[Any]]): RDD[Rating] =
predict(SerDe.asTupleRDD(userAndProducts.rdd))

def getUserFeatures: RDD[Array[Any]] = {
SerDe.fromTuple2RDD(userFeatures.asInstanceOf[RDD[(Any, Any)]])
}

def getProductFeatures: RDD[Array[Any]] = {
SerDe.fromTuple2RDD(productFeatures.asInstanceOf[RDD[(Any, Any)]])
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ import org.apache.spark.util.Utils
*/
private[python] class PythonMLLibAPI extends Serializable {


/**
* Loads and serializes labeled points saved with `RDD#saveAsTextFile`.
* @param jsc Java SparkContext
Expand Down Expand Up @@ -346,24 +345,7 @@ private[python] class PythonMLLibAPI extends Serializable {
model.predictSoft(data)
}

/**
* A Wrapper of MatrixFactorizationModel to provide helpfer method for Python
*/
private[python] class MatrixFactorizationModelWrapper(model: MatrixFactorizationModel)
extends MatrixFactorizationModel(model.rank, model.userFeatures, model.productFeatures) {

def predict(userAndProducts: JavaRDD[Array[Any]]): RDD[Rating] =
predict(SerDe.asTupleRDD(userAndProducts.rdd))

def getUserFeatures: RDD[Array[Any]] = {
SerDe.fromTuple2RDD(userFeatures.asInstanceOf[RDD[(Any, Any)]])
}

def getProductFeatures: RDD[Array[Any]] = {
SerDe.fromTuple2RDD(productFeatures.asInstanceOf[RDD[(Any, Any)]])
}

}

/**
* Java stub for Python mllib ALS.train(). This stub returns a handle
Expand Down
8 changes: 8 additions & 0 deletions python/pyspark/mllib/recommendation.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ class MatrixFactorizationModel(JavaModelWrapper, JavaSaveable, JavaLoader):
>>> sameModel = MatrixFactorizationModel.load(sc, path)
>>> sameModel.predict(2,2)
0.43...
>>> sameModel.predictAll(testset).collect()
[Rating(...
>>> try:
... os.removedirs(path)
... except OSError:
Expand All @@ -111,6 +113,12 @@ def userFeatures(self):
def productFeatures(self):
return self.call("getProductFeatures")

@classmethod
def load(cls, sc, path):
model = cls._load_java(sc, path)
wrapper = sc._jvm.MatrixFactorizationModelWrapper(model)
return MatrixFactorizationModel(wrapper)


class ALS(object):

Expand Down