You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by imatiach-msft <gi...@git.apache.org> on 2018/06/25 05:00:28 UTC

[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

GitHub user imatiach-msft opened a pull request:

    https://github.com/apache/spark/pull/21632

    [SPARK-19591][ML][MLlib] Add sample weights to decision trees

    This is updated PR https://github.com/apache/spark/pull/16722
    
    What changes were proposed in this pull request?
    
    This patch adds support for sample weights to DecisionTreeRegressor and DecisionTreeClassifier.
    
    Note: This patch does not add support for sample weights to RandomForest. As discussed in the JIRA, we would like to add sample weights into the bagging process. This patch is large enough as is, and there are some additional considerations to be made for random forests. Since the machinery introduced here needs to be present regardless, I have opted to leave random forests for a follow up pr.
    How was this patch tested?
    
    The algorithms are tested to ensure that:
    
        Arbitrary scaling of constant weights has no effect
        Outliers with small weights do not affect the learned model
        Oversampling and weighting are equivalent
    
    Unit tests are also added to test other smaller components.
    Summary of changes
    
        Impurity aggregators now store weighted sufficient statistics. They also store a raw count, however, since this is needed to use minInstancesPerNode.
    
        Impurity aggregators now also hold the raw count.
    
        This patch maintains the meaning of minInstancesPerNode, in that the parameter still corresponds to raw, unweighted counts. It also adds a new parameter minWeightFractionPerNode which requires that nodes must contain at least minWeightFractionPerNode * weightedNumExamples total weight.
    
        This patch modifies findSplitsForContinuousFeatures to use weighted sums. Unit tests are added.
    
        TreePoint is modified to hold a sample weight
    
        BaggedPoint is modified from:
    
    private[spark] class BaggedPoint[Datum](val datum: Datum, val subsampleWeights: Array[Double]) extends Serializable
    
    to
    
    private[spark] class BaggedPoint[Datum](
        val datum: Datum,
        val subsampleCounts: Array[Int],
        val sampleWeight: Double) extends Serializable
    
    We do not simply multiply the counts by the weight and store that because we need the raw counts and the weight in order to use both minInstancesPerNode and minWeightPerNode
    
    Note: many of the changed files are due simply to using Instance instead of LabeledPoint

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/imatiach-msft/spark ilmat/sample-weights

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/21632.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #21632
    
----
commit b5278e5a54156c14b6a8bdd3256f18e1ff3b4128
Author: Ilya Matiach <il...@...>
Date:   2017-01-27T16:38:36Z

    add weights to dt

----


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94180 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94180/testReport)** for PR 21632 at commit [`6326bdf`](https://github.com/apache/spark/commit/6326bdf8856a93e193b320c6579009d75db9409a).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93948/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96633 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96633/testReport)** for PR 21632 at commit [`27789fe`](https://github.com/apache/spark/commit/27789fe72c7471f543bc1113fe62fe889b931bcf).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    jenkins retest this please


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1613/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    cc also @jkbradley 


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97880/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1778/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #92283 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/92283/testReport)** for PR 21632 at commit [`b5278e5`](https://github.com/apache/spark/commit/b5278e5a54156c14b6a8bdd3256f18e1ff3b4128).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3214/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1769/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    jenkins retest this please


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96588 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96588/testReport)** for PR 21632 at commit [`6ee67f1`](https://github.com/apache/spark/commit/6ee67f1f88ca7e1510f8dc2c4264c9ffa43bb1c4).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96591 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96591/testReport)** for PR 21632 at commit [`1d68a87`](https://github.com/apache/spark/commit/1d68a87e777dbdec1d3fea58e354d646c80f6460).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97896/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97944 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97944/testReport)** for PR 21632 at commit [`843b487`](https://github.com/apache/spark/commit/843b4876ea5ece7a46bebd3d7738740d2cab3a72).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94288 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94288/testReport)** for PR 21632 at commit [`ad28e44`](https://github.com/apache/spark/commit/ad28e44ce839295a11f59b2b6458dd160e3ac9d4).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96219 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96219/testReport)** for PR 21632 at commit [`8a18157`](https://github.com/apache/spark/commit/8a18157b9ba7952457d91c771cae5c70405cacf7).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4241/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    @holdenk @jkbradley ping... could you please take a look at this PR?  Thank you!


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96483/
    Test FAILed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r209839752
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/classification/DecisionTreeClassifier.scala ---
    @@ -97,28 +103,48 @@ class DecisionTreeClassifier @Since("1.4.0") (
       @Since("1.6.0")
       override def setSeed(value: Long): this.type = set(seed, value)
     
    +  /**
    +   * Sets the value of param [[weightCol]].
    +   * If this is not set or empty, we treat all instance weights as 1.0.
    +   * Default is not set, so all instances have weight one.
    +   *
    +   * @group setParam
    +   */
    +  @Since("2.2.0")
    --- End diff --
    
    
    
    need to change this version to 2.4.0



---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/92314/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    jenkins retest this pretty please :)


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1608/
    Test PASSed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r220413857
  
    --- Diff: mllib/src/test/scala/org/apache/spark/ml/regression/DecisionTreeRegressorSuite.scala ---
    @@ -159,6 +169,31 @@ class DecisionTreeRegressorSuite extends MLTest with DefaultReadWriteTest {
           }
       }
     
    +  test("training with sample weights") {
    +    val df = linearRegressionData
    +    val numClasses = 0
    +    val testParams = Seq(5, 10)
    +    for (maxDepth <- testParams) {
    +      val estimator = new DecisionTreeRegressor()
    +        .setImpurity("variance")
    +        .setMaxDepth(maxDepth)
    +        .setMaxBins(100)
    +        .setMinWeightFractionPerNode(0.05)
    +        .setSeed(123)
    +      // TODO: This doesn't look correct, need to debug to figure out what is wrong with tolerance
    --- End diff --
    
    fixed after some debugging


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96220 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96220/testReport)** for PR 21632 at commit [`b9f2425`](https://github.com/apache/spark/commit/b9f2425bcf29997160b4f582ecc74d8a94c708cf).
     * This patch **fails due to an unknown error code, -9**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1770/
    Test PASSed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r209839825
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/regression/DecisionTreeRegressor.scala ---
    @@ -65,6 +68,9 @@ class DecisionTreeRegressor @Since("1.4.0") (@Since("1.4.0") override val uid: S
       override def setMinInstancesPerNode(value: Int): this.type = set(minInstancesPerNode, value)
     
       /** @group setParam */
    +  @Since("2.2.0")
    --- End diff --
    
    
    
    need to change this version to 2.4.0



---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94164 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94164/testReport)** for PR 21632 at commit [`a34b3cd`](https://github.com/apache/spark/commit/a34b3cde5b6a1e426d153b7b4f3b2b4d7d70ba8c).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4252/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93940 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93940/testReport)** for PR 21632 at commit [`cf77ab2`](https://github.com/apache/spark/commit/cf77ab2be0950dd866fe2011d18daa1d2b25b79b).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1669/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97896 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97896/testReport)** for PR 21632 at commit [`bca2eaf`](https://github.com/apache/spark/commit/bca2eaf0de57180268494e21d93ddf3e66213321).
     * This patch **fails due to an unknown error code, -9**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93940/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96235 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96235/testReport)** for PR 21632 at commit [`b9f2425`](https://github.com/apache/spark/commit/b9f2425bcf29997160b4f582ecc74d8a94c708cf).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93928 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93928/testReport)** for PR 21632 at commit [`4ad2833`](https://github.com/apache/spark/commit/4ad28338770ba8cc9b30c99af5342811496c39df).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96591 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96591/testReport)** for PR 21632 at commit [`1d68a87`](https://github.com/apache/spark/commit/1d68a87e777dbdec1d3fea58e354d646c80f6460).
     * This patch **fails due to an unknown error code, -9**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r218657097
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/classification/DecisionTreeClassifier.scala ---
    @@ -66,6 +69,9 @@ class DecisionTreeClassifier @Since("1.4.0") (
       override def setMinInstancesPerNode(value: Int): this.type = set(minInstancesPerNode, value)
     
       /** @group setParam */
    +  @Since("2.2.0")
    --- End diff --
    
    done


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3490/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96491 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96491/testReport)** for PR 21632 at commit [`87a8223`](https://github.com/apache/spark/commit/87a82238d2f4396aa2b8301142763b83f92fb72f).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by dilipbiswal <gi...@git.apache.org>.
Github user dilipbiswal commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    retest this please


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1598/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94288/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93930 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93930/testReport)** for PR 21632 at commit [`263b343`](https://github.com/apache/spark/commit/263b3430de888cbc434aec08928f181e6c9d1070).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93926 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93926/testReport)** for PR 21632 at commit [`30424da`](https://github.com/apache/spark/commit/30424dabb373dc5b87ec9505cec61dfb8cd04478).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3385/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1601/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93930/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93942 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93942/testReport)** for PR 21632 at commit [`0ad3b08`](https://github.com/apache/spark/commit/0ad3b08bcdd55204f9b504d224c088ffc8f63f34).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96235/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96633 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96633/testReport)** for PR 21632 at commit [`27789fe`](https://github.com/apache/spark/commit/27789fe72c7471f543bc1113fe62fe889b931bcf).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96633/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97725/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    jenkins retest this please


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96588 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96588/testReport)** for PR 21632 at commit [`6ee67f1`](https://github.com/apache/spark/commit/6ee67f1f88ca7e1510f8dc2c4264c9ffa43bb1c4).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93926 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93926/testReport)** for PR 21632 at commit [`30424da`](https://github.com/apache/spark/commit/30424dabb373dc5b87ec9505cec61dfb8cd04478).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1600/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1609/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1848/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94180/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97944 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97944/testReport)** for PR 21632 at commit [`843b487`](https://github.com/apache/spark/commit/843b4876ea5ece7a46bebd3d7738740d2cab3a72).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93928 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93928/testReport)** for PR 21632 at commit [`4ad2833`](https://github.com/apache/spark/commit/4ad28338770ba8cc9b30c99af5342811496c39df).
     * This patch **fails to build**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/450/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97944/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94015 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94015/testReport)** for PR 21632 at commit [`981d707`](https://github.com/apache/spark/commit/981d7072c4574184342868616c69bd44bc33ce3b).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96235 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96235/testReport)** for PR 21632 at commit [`b9f2425`](https://github.com/apache/spark/commit/b9f2425bcf29997160b4f582ecc74d8a94c708cf).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94015 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94015/testReport)** for PR 21632 at commit [`981d707`](https://github.com/apache/spark/commit/981d7072c4574184342868616c69bd44bc33ce3b).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3459/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    jenkins retest this please


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4195/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96491 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96491/testReport)** for PR 21632 at commit [`87a8223`](https://github.com/apache/spark/commit/87a82238d2f4396aa2b8301142763b83f92fb72f).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3391/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96483 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96483/testReport)** for PR 21632 at commit [`f0cb95f`](https://github.com/apache/spark/commit/f0cb95f6fd95b1819a028bdd674ea5f7c3a2e754).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93948 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93948/testReport)** for PR 21632 at commit [`3189259`](https://github.com/apache/spark/commit/31892591b89da36a936009553a762b8453ff483e).
     * This patch **fails to generate documentation**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r218657065
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/classification/DecisionTreeClassifier.scala ---
    @@ -97,28 +103,48 @@ class DecisionTreeClassifier @Since("1.4.0") (
       @Since("1.6.0")
       override def setSeed(value: Long): this.type = set(seed, value)
     
    +  /**
    +   * Sets the value of param [[weightCol]].
    +   * If this is not set or empty, we treat all instance weights as 1.0.
    +   * Default is not set, so all instances have weight one.
    +   *
    +   * @group setParam
    +   */
    +  @Since("2.2.0")
    --- End diff --
    
    done


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3458/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4375/
    Test PASSed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r209839725
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/classification/DecisionTreeClassifier.scala ---
    @@ -66,6 +69,9 @@ class DecisionTreeClassifier @Since("1.4.0") (
       override def setMinInstancesPerNode(value: Int): this.type = set(minInstancesPerNode, value)
     
       /** @group setParam */
    +  @Since("2.2.0")
    --- End diff --
    
    need to change this version to 2.4.0


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4389/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96220/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94165 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94165/testReport)** for PR 21632 at commit [`6326bdf`](https://github.com/apache/spark/commit/6326bdf8856a93e193b320c6579009d75db9409a).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4417/
    Test PASSed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r209840163
  
    --- Diff: mllib/src/test/scala/org/apache/spark/ml/tree/impl/RandomForestSuite.scala ---
    @@ -700,6 +722,82 @@ class RandomForestSuite extends SparkFunSuite with MLlibTestSparkContext {
         assert(unprunedTree.numNodes === 5)
         assert(RandomForestSuite.getSumLeafCounters(List(prunedTree.rootNode)) === arr.size)
       }
    +
    +  test("weights at arbitrary scale") {
    +    val arr = EnsembleTestHelper.generateOrderedLabeledPoints(3, 10)
    +    val rddWithUnitWeights = sc.parallelize(arr.map(_.asML.toInstance(1.0)))
    +    val rddWithSmallWeights = rddWithUnitWeights.map { inst =>
    +      Instance(inst.label, 0.001, inst.features)
    +    }
    +    val rddWithBigWeights = rddWithUnitWeights.map { inst =>
    +      Instance(inst.label, 1000, inst.features)
    +    }
    +    val strategy = new OldStrategy(OldAlgo.Classification, Gini, 3, 2)
    +    val unitWeightTrees = RandomForest.run(rddWithUnitWeights, strategy, 3, "all", 42L, None)
    +
    +    val smallWeightTrees = RandomForest.run(rddWithSmallWeights, strategy, 3, "all", 42L, None)
    +    unitWeightTrees.zip(smallWeightTrees).foreach { case (unitTree, smallWeightTree) =>
    +      TreeTests.checkEqual(unitTree, smallWeightTree)
    +    }
    +
    +    val bigWeightTrees = RandomForest.run(rddWithBigWeights, strategy, 3, "all", 42L, None)
    +    unitWeightTrees.zip(bigWeightTrees).foreach { case (unitTree, bigWeightTree) =>
    +      TreeTests.checkEqual(unitTree, bigWeightTree)
    +    }
    +  }
    +
    +  test("minWeightFraction and minInstancesPerNode") {
    +    val data = Array(
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(1.0, 0.1, Vectors.dense(1.0))
    +    )
    +    val rdd = sc.parallelize(data)
    +    val strategy = new OldStrategy(OldAlgo.Classification, Gini, 3, 2,
    +      minWeightFractionPerNode = 0.5)
    +    val Array(tree1) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree1.depth == 0)
    +
    +    strategy.minWeightFractionPerNode = 0.0
    +    val Array(tree2) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree2.depth == 1)
    +
    +    strategy.minInstancesPerNode = 2
    +    val Array(tree3) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree3.depth == 0)
    +
    +    strategy.minInstancesPerNode = 1
    +    val Array(tree4) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree4.depth == 1)
    +  }
    +
    +  test("extremely unbalanced weighting with bagging") {
    +    /*
    +    This test verifies that sample weights are taken into account during the
    +    bagging process, instead of applied afterwards. If sample weights were applied
    +    after the sampling is done, then some of the trees would not contain the heavily
    +    weighted example. Here, we verify that all trees predict the correct value.
    +     */
    +    val data = Array(
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(1.0, 1e6, Vectors.dense(1.0))
    +    )
    +    val rdd = sc.parallelize(data)
    +    val strategy = new OldStrategy(OldAlgo.Classification, Gini, 3, 2)
    +    val trees = RandomForest.run(rdd, strategy, 10, "all", 42L, None)
    +    val features = Vectors.dense(1.0)
    +    trees.foreach { tree =>
    +      val predict = tree.rootNode.predictImpl(features).prediction
    +      // TODO: need to investigate why this went to 0 for some trees
    --- End diff --
    
    need to investigate this test


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93948 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93948/testReport)** for PR 21632 at commit [`3189259`](https://github.com/apache/spark/commit/31892591b89da36a936009553a762b8453ff483e).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94288 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94288/testReport)** for PR 21632 at commit [`ad28e44`](https://github.com/apache/spark/commit/ad28e44ce839295a11f59b2b6458dd160e3ac9d4).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94164/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94180 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94180/testReport)** for PR 21632 at commit [`6326bdf`](https://github.com/apache/spark/commit/6326bdf8856a93e193b320c6579009d75db9409a).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97880 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97880/testReport)** for PR 21632 at commit [`bca2eaf`](https://github.com/apache/spark/commit/bca2eaf0de57180268494e21d93ddf3e66213321).
     * This patch **fails build dependency tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96483 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96483/testReport)** for PR 21632 at commit [`f0cb95f`](https://github.com/apache/spark/commit/f0cb95f6fd95b1819a028bdd674ea5f7c3a2e754).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    jenkins retest this please


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96591/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    looks like a random test failure with hive client suite (not related to the PR), I'll try updating to latest master and rebuild...


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97725 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97725/testReport)** for PR 21632 at commit [`27789fe`](https://github.com/apache/spark/commit/27789fe72c7471f543bc1113fe62fe889b931bcf).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    looks like a random failure


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97896 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97896/testReport)** for PR 21632 at commit [`bca2eaf`](https://github.com/apache/spark/commit/bca2eaf0de57180268494e21d93ddf3e66213321).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/92283/
    Test FAILed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r218657039
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/regression/DecisionTreeRegressor.scala ---
    @@ -65,6 +68,9 @@ class DecisionTreeRegressor @Since("1.4.0") (@Since("1.4.0") override val uid: S
       override def setMinInstancesPerNode(value: Int): this.type = set(minInstancesPerNode, value)
     
       /** @group setParam */
    +  @Since("2.2.0")
    --- End diff --
    
    done


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r220413827
  
    --- Diff: mllib/src/test/scala/org/apache/spark/ml/tree/impl/RandomForestSuite.scala ---
    @@ -700,6 +722,82 @@ class RandomForestSuite extends SparkFunSuite with MLlibTestSparkContext {
         assert(unprunedTree.numNodes === 5)
         assert(RandomForestSuite.getSumLeafCounters(List(prunedTree.rootNode)) === arr.size)
       }
    +
    +  test("weights at arbitrary scale") {
    +    val arr = EnsembleTestHelper.generateOrderedLabeledPoints(3, 10)
    +    val rddWithUnitWeights = sc.parallelize(arr.map(_.asML.toInstance(1.0)))
    +    val rddWithSmallWeights = rddWithUnitWeights.map { inst =>
    +      Instance(inst.label, 0.001, inst.features)
    +    }
    +    val rddWithBigWeights = rddWithUnitWeights.map { inst =>
    +      Instance(inst.label, 1000, inst.features)
    +    }
    +    val strategy = new OldStrategy(OldAlgo.Classification, Gini, 3, 2)
    +    val unitWeightTrees = RandomForest.run(rddWithUnitWeights, strategy, 3, "all", 42L, None)
    +
    +    val smallWeightTrees = RandomForest.run(rddWithSmallWeights, strategy, 3, "all", 42L, None)
    +    unitWeightTrees.zip(smallWeightTrees).foreach { case (unitTree, smallWeightTree) =>
    +      TreeTests.checkEqual(unitTree, smallWeightTree)
    +    }
    +
    +    val bigWeightTrees = RandomForest.run(rddWithBigWeights, strategy, 3, "all", 42L, None)
    +    unitWeightTrees.zip(bigWeightTrees).foreach { case (unitTree, bigWeightTree) =>
    +      TreeTests.checkEqual(unitTree, bigWeightTree)
    +    }
    +  }
    +
    +  test("minWeightFraction and minInstancesPerNode") {
    +    val data = Array(
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(1.0, 0.1, Vectors.dense(1.0))
    +    )
    +    val rdd = sc.parallelize(data)
    +    val strategy = new OldStrategy(OldAlgo.Classification, Gini, 3, 2,
    +      minWeightFractionPerNode = 0.5)
    +    val Array(tree1) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree1.depth == 0)
    +
    +    strategy.minWeightFractionPerNode = 0.0
    +    val Array(tree2) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree2.depth == 1)
    +
    +    strategy.minInstancesPerNode = 2
    +    val Array(tree3) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree3.depth == 0)
    +
    +    strategy.minInstancesPerNode = 1
    +    val Array(tree4) = RandomForest.run(rdd, strategy, 1, "all", 42L, None)
    +    assert(tree4.depth == 1)
    +  }
    +
    +  test("extremely unbalanced weighting with bagging") {
    +    /*
    +    This test verifies that sample weights are taken into account during the
    +    bagging process, instead of applied afterwards. If sample weights were applied
    +    after the sampling is done, then some of the trees would not contain the heavily
    +    weighted example. Here, we verify that all trees predict the correct value.
    +     */
    +    val data = Array(
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(0.0, 1.0, Vectors.dense(0.0)),
    +      Instance(1.0, 1e6, Vectors.dense(1.0))
    +    )
    +    val rdd = sc.parallelize(data)
    +    val strategy = new OldStrategy(OldAlgo.Classification, Gini, 3, 2)
    +    val trees = RandomForest.run(rdd, strategy, 10, "all", 42L, None)
    +    val features = Vectors.dense(1.0)
    +    trees.foreach { tree =>
    +      val predict = tree.rootNode.predictImpl(features).prediction
    +      // TODO: need to investigate why this went to 0 for some trees
    --- End diff --
    
    investigated - this was added by mistake, in original PR it was added in and then removed, it got re-added during the big merge to latest code


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94165 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94165/testReport)** for PR 21632 at commit [`6326bdf`](https://github.com/apache/spark/commit/6326bdf8856a93e193b320c6579009d75db9409a).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark pull request #21632: [SPARK-19591][ML][MLlib] Add sample weights to de...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21632#discussion_r209840017
  
    --- Diff: mllib/src/test/scala/org/apache/spark/ml/regression/DecisionTreeRegressorSuite.scala ---
    @@ -159,6 +169,31 @@ class DecisionTreeRegressorSuite extends MLTest with DefaultReadWriteTest {
           }
       }
     
    +  test("training with sample weights") {
    +    val df = linearRegressionData
    +    val numClasses = 0
    +    val testParams = Seq(5, 10)
    +    for (maxDepth <- testParams) {
    +      val estimator = new DecisionTreeRegressor()
    +        .setImpurity("variance")
    +        .setMaxDepth(maxDepth)
    +        .setMaxBins(100)
    +        .setMinWeightFractionPerNode(0.05)
    +        .setSeed(123)
    +      // TODO: This doesn't look correct, need to debug to figure out what is wrong with tolerance
    --- End diff --
    
    need to debug this


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93940 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93940/testReport)** for PR 21632 at commit [`cf77ab2`](https://github.com/apache/spark/commit/cf77ab2be0950dd866fe2011d18daa1d2b25b79b).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97725 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97725/testReport)** for PR 21632 at commit [`27789fe`](https://github.com/apache/spark/commit/27789fe72c7471f543bc1113fe62fe889b931bcf).
     * This patch **fails to generate documentation**.
     * This patch **does not merge cleanly**.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3215/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93930 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93930/testReport)** for PR 21632 at commit [`263b343`](https://github.com/apache/spark/commit/263b3430de888cbc434aec08928f181e6c9d1070).
     * This patch **fails to build**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96219 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96219/testReport)** for PR 21632 at commit [`8a18157`](https://github.com/apache/spark/commit/8a18157b9ba7952457d91c771cae5c70405cacf7).
     * This patch **fails due to an unknown error code, -9**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #93942 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93942/testReport)** for PR 21632 at commit [`0ad3b08`](https://github.com/apache/spark/commit/0ad3b08bcdd55204f9b504d224c088ffc8f63f34).
     * This patch **fails to generate documentation**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94015/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by jianpan <gi...@git.apache.org>.
Github user jianpan commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Is there an ETA when this will be merged to master? Allowing sample weights is an important enhancements. Thanks.



---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    @holdenk @sethah I've updated the PR to latest master (hopefully all of the tests still pass :) )


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    @holdenk @sethah @HyukjinKwon @jkbradley I've fixed all known issues in the PR and did some small cleanup, could you please review this PR?  Thank you!


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #92314 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/92314/testReport)** for PR 21632 at commit [`64576d6`](https://github.com/apache/spark/commit/64576d6b7dcb1e9724f06b1689410eb88bb78bb8).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    @holdenk @sethah @HyukjinKwon @jkbradley ping... could you please take another look at this PR?  I've updated it to latest master again.  Thank you!


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #92283 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/92283/testReport)** for PR 21632 at commit [`b5278e5`](https://github.com/apache/spark/commit/b5278e5a54156c14b6a8bdd3256f18e1ff3b4128).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97880 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97880/testReport)** for PR 21632 at commit [`bca2eaf`](https://github.com/apache/spark/commit/bca2eaf0de57180268494e21d93ddf3e66213321).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97734/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94165/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96219/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1597/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #92314 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/92314/testReport)** for PR 21632 at commit [`64576d6`](https://github.com/apache/spark/commit/64576d6b7dcb1e9724f06b1689410eb88bb78bb8).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/3227/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97734 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97734/testReport)** for PR 21632 at commit [`27789fe`](https://github.com/apache/spark/commit/27789fe72c7471f543bc1113fe62fe889b931bcf).
     * This patch **fails due to an unknown error code, -9**.
     * This patch **does not merge cleanly**.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4220/
    Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #94164 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94164/testReport)** for PR 21632 at commit [`a34b3cd`](https://github.com/apache/spark/commit/a34b3cde5b6a1e426d153b7b4f3b2b4d7d70ba8c).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Jenkins retest this please


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96491/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/467/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93928/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #97734 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97734/testReport)** for PR 21632 at commit [`27789fe`](https://github.com/apache/spark/commit/27789fe72c7471f543bc1113fe62fe889b931bcf).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/96588/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    **[Test build #96220 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/96220/testReport)** for PR 21632 at commit [`b9f2425`](https://github.com/apache/spark/commit/b9f2425bcf29997160b4f582ecc74d8a94c708cf).


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by imatiach-msft <gi...@git.apache.org>.
Github user imatiach-msft commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    @holdenk @sethah @HyukjinKwon I have a successful build, I need to look into 2-3 wacky test results that changed since when @sethah opened his PR (see comments in my PR).  In the mean time, would anyone be able to review the PR - are there any comments from the previous PR that were still not resolved and need to be made?


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93942/
    Test FAILed.


---

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


[GitHub] spark issue #21632: [SPARK-19591][ML][MLlib] Add sample weights to decision ...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21632
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93926/
    Test FAILed.


---

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