Skip to content

Commit c0317ed

Browse files
committed
Document missing attributes on KhiopsRegressor
Namely, n_trees, n_text_features and type_text_features.
1 parent 019b089 commit c0317ed

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

khiops/sklearn/estimators.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)