With Spark1.6.0 MLLib, I'd build a model (like RandomForest) and save to hdfs,and then is was possible to load the randomforest model from hdfs to predict without SparkContext.Now,load the model we can use like this:
val loadModel = RandomForestModel.load(sc,modelpath)
Is there a another way to load the model without sc?Thanks!