Re: pyspark 1.5 0 save model ?

2016-07-18 Thread Holden Karau
If you used RandomForestClassifier from mllib you can use the save method described in http://spark.apache.org/docs/1.5.0/api/python/pyspark.mllib.html#module-pyspark.mllib.classification which will write out some JSON metadata as well as parquet for the actual model. For the newer ml pipeline one

pyspark 1.5 0 save model ?

2016-07-18 Thread pseudo oduesp
Hi, how i can save model under pyspakr 1.5.0 ? i use RandomForestClassifier() thanks in advance.