You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by yanboliang <gi...@git.apache.org> on 2017/08/21 13:32:48 UTC

[GitHub] spark pull request #19011: [ML][MINOR] Make sharedParams update.

GitHub user yanboliang opened a pull request:

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

    [ML][MINOR] Make sharedParams update.

    ## What changes were proposed in this pull request?
    ```sharedParams.scala``` was generated by ```SharedParamsCodeGen```, but it's not updated currently. Maybe someone manual update ```sharedParams.scala```, this PR fix this issue.
    
    ## How was this patch tested?
    Offline check.


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

    $ git pull https://github.com/yanboliang/spark sharedParams

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

    https://github.com/apache/spark/pull/19011.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 #19011
    
----
commit 85307410cf3438f407999506614cfdd7349bcbf4
Author: Yanbo Liang <yb...@gmail.com>
Date:   2017-08-21T13:28:59Z

    Make sharedParams update.

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #19011: [ML][MINOR] Make sharedParams update.

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #19011: [ML][MINOR] Make sharedParams update.

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #19011: [ML][MINOR] Make sharedParams update.

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

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #19011: [ML][MINOR] Make sharedParams update.

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

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


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #19011: [ML][MINOR] Make sharedParams update.

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

    https://github.com/apache/spark/pull/19011
  
    **[Test build #80929 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/80929/testReport)** for PR 19011 at commit [`8530741`](https://github.com/apache/spark/commit/85307410cf3438f407999506614cfdd7349bcbf4).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #19011: [ML][MINOR] Make sharedParams update.

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

    https://github.com/apache/spark/pull/19011#discussion_r134232769
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/param/shared/sharedParams.scala ---
    @@ -154,7 +154,7 @@ private[ml] trait HasVarianceCol extends Params {
     }
     
     /**
    - * Trait for shared param threshold (default: 0.5).
    --- End diff --
    
    The definition in ```SharedParamsCodeGen``` has no default value yet, since both ```LogisticRegression``` and ```LinearSVC``` extends from ```HasThreshold```, but they have different default value.
    ```
    ParamDesc[Double]("threshold",
            "threshold in binary classification prediction, in range [0, 1]",
            isValid = "ParamValidators.inRange(0, 1)", finalMethods = false, finalFields = false),
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #19011: [ML][MINOR] Make sharedParams update.

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

    https://github.com/apache/spark/pull/19011
  
    Merged into master. Thanks.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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