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

    https://github.com/apache/spark/pull/21125#discussion_r183282075
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/ml/regression/GeneralizedLinearRegression.scala
 ---
    @@ -782,8 +782,12 @@ object GeneralizedLinearRegression extends 
DefaultParamsReadable[GeneralizedLine
     
         override def variance(mu: Double): Double = mu
     
    +    private def ylogy(y: Double, mu: Double): Double = {
    +      if (y == 0) 0.0 else y * math.log(y / mu)
    +    }
    +
    --- End diff --
    
    Another `ylogy` implementation in `Binomial`. Can you move this code to 
`object GeneralizedLinearRegression` and make it private to this package?


---

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

Reply via email to