
You can basically export any SVM models you build using the ksvm R package into PMML by using the PMML package available from Togaware.
The PMML package is also available from CRAN.
With this package, a PMML representation can be obtained for SVMs implementing:
- multi-class classification
- binary classifcation
- regression
We have encountered an issue with ksvm while building the dummy-fication piece. Basically, except for the first categorical variable in a model, all other categorical variables loose their first input category. That is, ksvm does not create a dummy variable for the first category. We have already pointed this out to the author of ksvm. For now, the PMML export code mimics this issue so that you can get a match during scoring.
The example below shows how to train a support vector machine to perform binary classification using the audit dataset provided by Togaware (thanks to Graham Williams).
require(kernlab)
audit <- read.csv(file("http://rattle.togaware.com/audit.csv")) myksvm <- ksvm(as.factor(Adjusted) ~ ., data=audit[,c(2:10,13)], kernel="rbfdot", prob.model=TRUE) pmml(myksvm, data=audit)
BTW, any models you build in ksvm and export using the PMML package can be uploaded directly into ADAPA for scoring.
0 comments:
Post a Comment