Github user MLnick commented on a diff in the pull request:
https://github.com/apache/spark/pull/11989#discussion_r58592767
--- Diff: mllib/src/main/scala/org/apache/spark/ml/tree/treeParams.scala ---
@@ -329,6 +329,8 @@ private[ml] trait HasFeatureSubsetStrategy extends
Params {
* - "onethird": use 1/3 of the features
* - "sqrt": use sqrt(number of features)
* - "log2": use log2(number of features)
+ * - "(0.0-1.0]": use the specified fraction of features
--- End diff --
I'm wondering if we can simply consolidate the doc into something like:
```
- "n": when n is in the range (0, 1.0], use n * number of features. When n
is in the range (1, number of features), use n features.
```
---
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 [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]