File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
mllib/src/main/scala/org/apache/spark/mllib/tree/configuration Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,12 @@ import org.apache.spark.mllib.tree.configuration.QuantileStrategy._
4949 * k) implies the feature n is categorical with k categories 0,
5050 * 1, 2, ... , k-1. It's important to note that features are
5151 * zero-indexed.
52+ * @param minInstancesPerNode Minimum number of nodes each child must have after split. Default value is 0.
53+ * If a split cause left or right child to have less than minInstancesPerNode,
54+ * this split will not be considered as a valid split.
55+ * @param minInfoGain Minimum information gain a split must get. Default value is 0.0.
56+ * If a split has less information gain than minInfoGain,
57+ * this split will not be considered as a valid split.
5258 * @param maxMemoryInMB Maximum memory in MB allocated to histogram aggregation. Default value is
5359 * 128 MB.
5460 */
You can’t perform that action at this time.
0 commit comments