Short question: is there a PMML interface for Java, Python or any other major programming language that supports SVM models?
Background: I have trained an SVM model in R using the ksvm
function from the kernlab
package. Now I would like to use this model in a different piece of software. To export it from R, I think I could use PMML (Predictive Model Markup Language) via the pmml
package for R.
However, I can't find any library for Java, Python, or basically any language that allows for importing such a model. The Data Mining Group lists quite a few PMML interfaces, but these are mostly specific tools for statistics. There is also the libsvm general library, but it is not clear how this can be used to migrate models from one to another interface.