In pySpark MLlib there seems to be no way to save and load regression models, such as the LogisticRegressionModel, SVMModel, NaiveBayesModel and DecisionTreeModel. There is load and save on the recommender model MatrixFactorizationModel through JavaSaveable and JavaLoader mixins, but the regression models are not done this way.
Is there a way that I could work around this by supplying my own load and save routines? If so, how would I go about this?
Is this functionality expected in a future release, or is pySpark MLlib being phased out?