Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/15149#discussion_r80072725
--- Diff:
mllib/src/main/scala/org/apache/spark/ml/classification/ProbabilisticClassifier.scala
---
@@ -200,22 +200,17 @@ abstract class ProbabilisticClassificationModel[
if (!isDefined(thresholds)) {
probability.argmax
} else {
- val thresholds: Array[Double] = getThresholds
- val probabilities = probability.toArray
+ val thresholds = getThresholds
var argMax = 0
var max = Double.NegativeInfinity
var i = 0
val probabilitySize = probability.size
while (i < probabilitySize) {
- if (thresholds(i) == 0.0) {
- max = Double.PositiveInfinity
+ // thresholds are all > 0, excepting that at most one may be 0
+ val scaled = probability(i) / thresholds(i)
+ if (scaled > max) {
--- End diff --
It's worth a comment at least, yes. I think it's probably no simpler or
faster code-wise to special case it.
---
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]