File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ displayTitle: <a href="mllib-guide.html">MLlib</a> - PMML model export
55---
66
77MLlib supports model export to Predictive Model Markup Language ([ PMML] ( http://en.wikipedia.org/wiki/Predictive_Model_Markup_Language ) ) format.
8+
89The table below outlines the MLlib models that can be exported to PMML and their equivalent PMML format.
910
1011<table class =" table " >
@@ -14,12 +15,21 @@ The table below outlines the MLlib models that can be exported to PMML and their
1415 <tbody >
1516 <tr>
1617 <td>KMeansModel</td><td>ClusteringModel</td>
18+ </tr>
19+ <tr>
20+ <td>LinearRegressionModel</td><td>RegressionModel (functionName="regression")</td>
21+ </tr>
22+ <tr>
23+ <td>RidgeRegressionModel</td><td>RegressionModel (functionName="regression")</td>
24+ </tr>
25+ <tr>
26+ <td>LassoModel</td><td>RegressionModel (functionName="regression")</td>
1727 </tr>
1828 <tr>
19- <td>LogisticRegressionModel </td><td>RegressionModel</td>
29+ <td>SVMModel </td><td>RegressionModel (functionName="classification" normalizationMethod="none") </td>
2030 </tr>
2131 <tr>
22- <td>SVMModel </td><td>RegressionModel</td>
32+ <td>LogisticRegressionModel </td><td>RegressionModel (functionName="classification" normalizationMethod="logit") </td>
2333 </tr>
2434 </tbody >
2535</table >
You can’t perform that action at this time.
0 commit comments