Re: Porting LIBSVM models to Spark

2016-11-29 Thread Maciej Szymkiewicz
Hi, Not directly. You could try some workaround with converting to PMML and importing with JPMML-Spark (but you'd have create your own Python wrapper). On a side note please avoid cross posting between Stack Overflow and user list and be sure to read the guidelines

Porting LIBSVM models to Spark

2016-11-29 Thread Pat Blachly
Is it possible to read LIBSVM model files into PySpark? Naively, I'm thinking of something like: scaler_path = "path to LIBSVM model generated with svm-scale" a = MinMaxScaler().load(scaler_path) While this example is shown for a feature transformation model, I would also be interested in

Porting LIBSVM models to Spark

2016-11-29 Thread Pat Blachly
Is it possible to read LIBSVM model files into PySpark? Naively, I'm thinking of something like: scaler_path = "path to LIBSVM model generated with svm-scale" a = MinMaxScaler().load(scaler_path) While this example is shown for a feature transformation model, I would also be interested in