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

    https://github.com/apache/spark/pull/15721#discussion_r93762729
  
    --- Diff: 
mllib/src/test/scala/org/apache/spark/ml/classification/LogisticRegressionSuite.scala
 ---
    @@ -1810,52 +1810,23 @@ class LogisticRegressionSuite
     
       }
     
    -  test("binary logistic regression with weighted data") {
    -    val numClasses = 2
    -    val numPoints = 40
    -    val outlierData = 
MLTestingUtils.genClassificationInstancesWithWeightedOutliers(spark,
    -      numClasses, numPoints)
    -    val testData = Array.tabulate[LabeledPoint](numClasses) { i =>
    -      LabeledPoint(i.toDouble, Vectors.dense(i.toDouble))
    -    }.toSeq.toDF()
    -    val lr = new 
LogisticRegression().setFamily("binomial").setWeightCol("weight")
    -    val model = lr.fit(outlierData)
    -    val results = model.transform(testData).select("label", 
"prediction").collect()
    -
    -    // check that the predictions are the one to one mapping
    -    results.foreach { case Row(label: Double, pred: Double) =>
    -      assert(label === pred)
    +  test("logistic regression with sample weights") {
    +    def modelEquals(m1: LogisticRegressionModel, m2: 
LogisticRegressionModel): Unit = {
    +      assert(m1.coefficientMatrix ~== m2.coefficientMatrix absTol 0.01)
    --- End diff --
    
    Should we also check ```interceptVector```?


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