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

    https://github.com/apache/spark/pull/17715#discussion_r113070161
  
    --- Diff: 
mllib/src/test/scala/org/apache/spark/ml/classification/LogisticRegressionSuite.scala
 ---
    @@ -610,6 +639,38 @@ class LogisticRegressionSuite
         assert(model2.coefficients ~= coefficientsR relTol 1E-3)
       }
     
    +  test("binary logistic regression with intercept without regularization 
with bound") {
    +    val upperBoundOfCoefficients = Matrices.dense(1, 4, Array(1.0, 0.0, 
1.0, 0.0))
    +    val upperBoundOfIntercept = Vectors.dense(1.0)
    --- End diff --
    
    Can you check `setboundsOnIntercepts` and `.setFitIntercept(false)` should 
throw exception. Or one should override the other one. 


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