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

    https://github.com/apache/spark/pull/18118#discussion_r119365001
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala ---
    @@ -441,12 +415,44 @@ private[ml] trait RandomForestParams extends 
TreeEnsembleParams {
       final def getFeatureSubsetStrategy: String = 
$(featureSubsetStrategy).toLowerCase(Locale.ROOT)
     }
     
    -private[spark] object RandomForestParams {
    -  // These options should be lowercase.
    -  final val supportedFeatureSubsetStrategies: Array[String] =
    -    Array("auto", "all", "onethird", "sqrt", 
"log2").map(_.toLowerCase(Locale.ROOT))
    +
    +
    +/**
    + * Parameters for Random Forest algorithms.
    + */
    +private[ml] trait RandomForestParams extends TreeEnsembleParams {
    +
    +  /**
    +   * Number of trees to train (>= 1).
    +   * If 1, then no bootstrapping is used.  If > 1, then bootstrapping is 
done.
    +   * TODO: Change to always do bootstrapping (simpler).  SPARK-7130
    +   * (default = 20)
    +   *
    +   * Note: The reason that we cannot add this to both GBT and RF (i.e. in 
TreeEnsembleParams)
    +   * is the param `maxIter` controls how many trees a GBT has. The 
semantics in the algorithms
    +   * are a bit different.
    +   * @group param
    +   */
    +  final val numTrees: IntParam = new IntParam(this, "numTrees", "Number of 
trees to train (>= 1)",
    +    ParamValidators.gtEq(1))
    +
    +  setDefault(numTrees -> 20)
    +
    +  /**
    +   * @deprecated This method is deprecated and will be removed in 3.0.0.
    +   * @group setParam
    +   */
    +  @deprecated("This method is deprecated and will be removed in 3.0.0.", 
"2.1.0")
    +  def setNumTrees(value: Int): this.type = set(numTrees, value)
    +
    +  /** @group getParam */
    +  final def getNumTrees: Int = $(numTrees)
    +
    +
     }
     
    +
    +
    --- End diff --
    
    done


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

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

Reply via email to