Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17084#discussion_r123925523
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/mllib/evaluation/BinaryClassificationMetrics.scala
 ---
    @@ -146,11 +160,13 @@ class BinaryClassificationMetrics @Since("1.3.0") (
       private lazy val (
         cumulativeCounts: RDD[(Double, BinaryLabelCounter)],
         confusions: RDD[(Double, BinaryConfusionMatrix)]) = {
    -    // Create a bin for each distinct score value, count positives and 
negatives within each bin,
    -    // and then sort by score values in descending order.
    -    val counts = scoreAndLabels.combineByKey(
    -      createCombiner = (label: Double) => new BinaryLabelCounter(0L, 0L) 
+= label,
    -      mergeValue = (c: BinaryLabelCounter, label: Double) => c += label,
    +    // Create a bin for each distinct score value, count weighted 
positives and
    +    // negatives within each bin, and then sort by score values in 
descending order.
    +    val counts = scoreAndLabelsWithWeights.combineByKey(
    +      createCombiner = (labelAndWeight: (Double, Double)) =>
    +        new BinaryLabelCounter(0L, 0L) += (labelAndWeight._1, 
labelAndWeight._2),
    --- End diff --
    
    updated, thanks!


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to