我正在使用 PySpark 和 MLlib 使用 Spark 1.3.0,我需要保存和加载我的模型。我使用这样的代码(取自官方文档)
from pyspark.mllib.recommendation import ALS, MatrixFactorizationModel, Rating
data = sc.textFile("data/mllib/als/test.data")
ratings = data.map(lambda l: l.split(',')).map(lambda l: Rating(int(l[0]), int(l[1]), float(l[2])))
rank = 10
numIterations = 20
model = ALS.train(ratings, rank, numIterations)
testdata = ratings.map(lambda p: (p[0], p[1]))
predictions = model.predictAll(testdata).map(lambda r: ((r[0], r[1]), r[2]))
predictions.collect() # shows me some predictions
model.save(sc, "model0")
# Trying to load saved model and work with it
model0 = MatrixFactorizationModel.load(sc, "model0")
predictions0 = model0.predictAll(testdata).map(lambda r: ((r[0], r[1]), r[2]))
在我尝试使用 model0 之后,我得到了一个很长的回溯,并以此结束:
Py4JError: An error occurred while calling o70.predict. Trace:
py4j.Py4JException: Method predict([class org.apache.spark.api.java.JavaRDD]) does not exist
at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:333)
at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:342)
at py4j.Gateway.invoke(Gateway.java:252)
at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:133)
at py4j.commands.CallCommand.execute(CallCommand.java:79)
at py4j.GatewayConnection.run(GatewayConnection.java:207)
at java.lang.Thread.run(Thread.java:745)
所以我的问题是——我做错了什么吗?据我调试,我的模型存储在(本地和 HDFS 上)并且它们包含许多带有一些数据的文件。我感觉模型保存正确,但可能没有正确加载。我也四处搜索,但没有发现任何相关内容。
看起来这个保存\加载功能最近已在 Spark 1.3.0 中添加,因此我还有另一个问题 - 在 1.3.0 版本之前保存\加载模型的推荐方法是什么?我还没有找到任何好的方法来做到这一点,至少对于 Python 而言。我也尝试过 Pickle,但遇到了与此处所述相同的问题Save Apache Spark mllib model in python