We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f46c75c commit 7a949d0Copy full SHA for 7a949d0
1 file changed
mllib/src/main/scala/org/apache/spark/mllib/pmml/export/PMMLModelExportFactory.scala
@@ -47,7 +47,8 @@ private[mllib] object PMMLModelExportFactory {
47
case logisticRegression: LogisticRegressionModel =>
48
new LogisticRegressionPMMLModelExport(logisticRegression, "logistic regression")
49
case _ =>
50
- throw new IllegalArgumentException("PMML Export not supported for model: " + model.getClass)
+ throw new IllegalArgumentException("PMML Export not supported for model: "
51
+ + model.getClass)
52
}
53
54
0 commit comments