Repository: spark Updated Branches: refs/heads/master c399c7f0e -> 918c91954
[MINOR][MLLIB] move setCheckpointInterval to non-expert setters ## What changes were proposed in this pull request? The `checkpointInterval` is a non-expert param. This PR moves its setter to non-expert group. Author: Xiangrui Meng <m...@databricks.com> Closes #13813 from mengxr/checkpoint-non-expert. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/918c9195 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/918c9195 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/918c9195 Branch: refs/heads/master Commit: 918c91954fb46400ce2c5ab066d2ec0ae48dda4a Parents: c399c7f Author: Xiangrui Meng <m...@databricks.com> Authored: Tue Jun 21 13:35:06 2016 -0700 Committer: Xiangrui Meng <m...@databricks.com> Committed: Tue Jun 21 13:35:06 2016 -0700 ---------------------------------------------------------------------- mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/918c9195/mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala ---------------------------------------------------------------------- diff --git a/mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala b/mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala index d7559f8..57c7e44 100644 --- a/mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala +++ b/mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala @@ -151,7 +151,7 @@ private[ml] trait DecisionTreeParams extends PredictorParams * [[org.apache.spark.SparkContext]]. * Must be >= 1. * (default = 10) - * @group expertSetParam + * @group setParam */ def setCheckpointInterval(value: Int): this.type = set(checkpointInterval, value) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org