File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2064,6 +2064,18 @@ class KhiopsRegressor(RegressorMixin, KhiopsPredictor):
20642064 Maximum number of features to construct automatically. See
20652065 :doc:`/multi_table_primer` for more details on the multi-table-specific
20662066 features.
2067+ n_trees : int, default 10
2068+ Maximum number of decision tree features to construct. The constructed trees
2069+ combine other features, either native or constructed. These features usually
2070+ improve the classifier's performance at the cost of interpretability of the
2071+ model.
2072+ n_text_features : int, default 10000
2073+ Maximum number of text features to construct.
2074+ type_text_features : str, default "words"
2075+ Type of the text features to construct. Can be either one of:
2076+ - "words": sequences of non-space characters
2077+ - "ngrams": sequences of bytes
2078+ - "tokens": user-defined
20672079 n_selected_features : int, default 0
20682080 Maximum number of features to be selected in the SNB predictor. If equal to
20692081 0 it selects all the features kept in the training.
You can’t perform that action at this time.
0 commit comments