@@ -1704,8 +1704,9 @@ class KhiopsClassifier(ClassifierMixin, KhiopsPredictor):
17041704 Parameters
17051705 ----------
17061706 n_features : int, default 100
1707- *Multi-table only* : Maximum number of multi-table aggregate features to
1708- construct. See :doc:`/multi_table_primer` for more details.
1707+ Maximum number of features to construct automatically. See
1708+ :doc:`/multi_table_primer` for more details on the multi-table-specific
1709+ features.
17091710 n_pairs : int, default 0
17101711 Maximum number of pair features to construct. These features are 2D grid
17111712 partitions of univariate feature pairs. The grid is optimized such that in each
@@ -1740,8 +1741,9 @@ class KhiopsClassifier(ClassifierMixin, KhiopsPredictor):
17401741 Pairs specified with ``specific_pairs`` have top priority: they are constructed
17411742 first.
17421743 construction_rules : list of str, optional
1743- Allowed rules for the automatic feature construction. If not set, it uses all
1744- possible rules.
1744+ Allowed rules for the automatic feature construction. If not set, Khiops
1745+ uses the multi-table construction rules listed in
1746+ `kh.DEFAULT_CONSTRUCTION_RULES <khiops.core.api.DEFAULT_CONSTRUCTION_RULES>`
17451747 group_target_value : bool, default ``False``
17461748 Allows grouping of the target values in classification. It can substantially
17471749 increase the training time.
@@ -1794,7 +1796,7 @@ class KhiopsClassifier(ClassifierMixin, KhiopsPredictor):
17941796 one must disable most AutoML capabilities of Khiops, namely:
17951797
17961798 - the training dataset must be monotable;
1797- - no timestamp column should be used in the training dataset ;
1799+ - the ``n_features`` parameter must be set to 0 ;
17981800 - the ``n_trees`` parameter must be set to 0;
17991801 - the ``n_pairs`` parameter must be left to its default value, 0;
18001802 - the ``n_text_features`` parameter must be set to 0.
@@ -2159,17 +2161,19 @@ class KhiopsRegressor(RegressorMixin, KhiopsPredictor):
21592161 Parameters
21602162 ----------
21612163 n_features : int, default 100
2162- *Multi-table only* : Maximum number of multi-table aggregate features to
2163- construct. See :doc:`/multi_table_primer` for more details.
2164+ Maximum number of features to construct automatically. See
2165+ :doc:`/multi_table_primer` for more details on the multi-table-specific
2166+ features.
21642167 n_selected_features : int, default 0
21652168 Maximum number of features to be selected in the SNB predictor. If equal to
21662169 0 it selects all the features kept in the training.
21672170 n_evaluated_features : int, default 0
21682171 Maximum number of features to be evaluated in the SNB predictor training. If
21692172 equal to 0 it evaluates all informative features.
21702173 construction_rules : list of str, optional
2171- Allowed rules for the automatic feature construction. If not set, it uses all
2172- possible rules.
2174+ Allowed rules for the automatic feature construction. If not set, Khiops
2175+ uses the multi-table construction rules listed in
2176+ `kh.DEFAULT_CONSTRUCTION_RULES <khiops.core.api.DEFAULT_CONSTRUCTION_RULES>`.
21732177 verbose : bool, default ``False``
21742178 If ``True`` it prints debug information and it does not erase temporary files
21752179 when fitting, predicting or transforming.
@@ -2212,7 +2216,7 @@ class KhiopsRegressor(RegressorMixin, KhiopsPredictor):
22122216 one must disable most AutoML capabilities of Khiops, namely:
22132217
22142218 - the training dataset must be monotable;
2215- - no timestamp column should be used in the training dataset ;
2219+ - the ``n_features`` parameter must be set to 0 ;
22162220 - the ``n_trees`` parameter must be set to 0;
22172221 - the ``n_pairs`` parameter must be left to its default value, 0;
22182222 - the ``n_text_features`` parameter must be set to 0.
@@ -2386,8 +2390,9 @@ class KhiopsEncoder(TransformerMixin, KhiopsSupervisedEstimator):
23862390 categorical_target : bool, default ``True``
23872391 ``True`` if the target column is categorical.
23882392 n_features : int, default 100
2389- *Multi-table only* : Maximum number of multi-table aggregate features to
2390- construct. See :doc:`/multi_table_primer` for more details.
2393+ Maximum number of features to construct automatically. See
2394+ :doc:`/multi_table_primer` for more details on the multi-table-specific
2395+ features.
23912396 n_pairs : int, default 0
23922397 Maximum number of pair features to construct. These features are 2D grid
23932398 partitions of univariate feature pairs. The grid is optimized such that in each
@@ -2415,8 +2420,9 @@ class KhiopsEncoder(TransformerMixin, KhiopsSupervisedEstimator):
24152420 Pairs specified with ``specific_pairs`` have top priority: they are constructed
24162421 first.
24172422 construction_rules : list of str, optional
2418- Allowed rules for the automatic feature construction. If not set, it uses all
2419- possible rules.
2423+ Allowed rules for the automatic feature construction. If not set, Khiops
2424+ uses the multi-table construction rules listed in
2425+ `kh.DEFAULT_CONSTRUCTION_RULES <khiops.core.api.DEFAULT_CONSTRUCTION_RULES>`.
24202426 informative_features_only : bool, default ``True``
24212427 If ``True`` keeps only informative features.
24222428 group_target_value : bool, default ``False``
0 commit comments