Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16149#discussion_r91168760
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/ml/regression/GeneralizedLinearRegression.scala
 ---
    @@ -479,7 +479,12 @@ object GeneralizedLinearRegression extends 
DefaultParamsReadable[GeneralizedLine
             numInstances: Double,
             weightSum: Double): Double = {
           -2.0 * predictions.map { case (y: Double, mu: Double, weight: 
Double) =>
    -        weight * dist.Binomial(1, mu).logProbabilityOf(math.round(y).toInt)
    +        val wt = math.round(weight).toInt
    +        if (wt == 0) {
    +          0.0
    +        } else {
    +          dist.Binomial(wt, mu).logProbabilityOf(math.round(y * 
weight).toInt)
    --- End diff --
    
    SGTM assuming tests pass. I'm still curious if we need to special case wt=0 
but it's fine.


---
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