Github user sethah commented on a diff in the pull request:
https://github.com/apache/spark/pull/15435#discussion_r106728259
--- Diff:
mllib/src/main/scala/org/apache/spark/ml/classification/LogisticRegression.scala
---
@@ -780,19 +788,33 @@ class LogisticRegressionModel private[spark] (
throw new SparkException("No training summary available for this
LogisticRegressionModel")
}
+ @Since("2.2.0")
+ def binarySummary: BinaryLogisticRegressionTrainingSummary = summary
match {
+ case b: BinaryLogisticRegressionTrainingSummary => b
+ case _ =>
+ throw new RuntimeException("Cannot create a binarySummary for a
non-binary model" +
--- End diff --
"binarySummary" -> "binary summary"
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]