@@ -724,9 +724,11 @@ def train_predictor(
724
724
If this target value is specified then it guarantees the calculation of lift
725
725
curves for it.
726
726
snb_predictor : bool, default ``True``
727
- If ``True`` it trains a Selective Naive Bayes predictor.
727
+ If ``True`` it trains a Selective Naive Bayes predictor. **Deprecated** will be
728
+ removed in Khiops 11.
728
729
univariate_predictor_number : int, default 0
729
- Number of univariate predictors to train.
730
+ Number of univariate predictors to train.**Deprecated** will be removed in
731
+ Khiops 11.
730
732
map_predictor : bool, default ``False``
731
733
If ``True`` trains a Maximum a Posteriori Naive Bayes predictor.
732
734
**Deprecated** will be removed in Khiops Python 11.
@@ -762,23 +764,25 @@ def train_predictor(
762
764
discretization_method : str
763
765
Name of the discretization method. Its valid values depend on the task:
764
766
- Supervised: "MODL" (default), "EqualWidth" or "EqualFrequency"
765
- - Unsupervised: "EqualWidth" (default), "EqualFrequency" or "None"
767
+ - Unsupervised: "EqualWidth" (default), "EqualFrequency" or "None"
766
768
min_interval_frequency : int, default 0
767
769
Minimum number of instances in an interval. If equal to 0 it is
768
- automatically calculated.
770
+ automatically calculated. **Deprecated** will be removed in Khiops 11.
769
771
max_intervals : int, default 0
770
772
Maximum number of intervals to construct. If equal to 0 it is automatically
771
- calculated.
773
+ calculated. **Deprecated** will be replaced by ``max_parts`` in Khiops 11.
772
774
grouping_method : str
773
775
Name of the grouping method. Its valid values depend on the task:
774
776
- Supervised: "MODL" (default) or "BasicGrouping"
775
777
- Unsupervised: "BasicGrouping" (default) or "None"
776
778
min_group_frequency : int, default 0
777
- Minimum number of instances for a group.
779
+ Minimum number of instances for a group. **Deprecated** will be removed in
780
+ Khiops 11.
778
781
max_groups : int, default 0
779
782
Maximum number of groups. If equal to 0 it is automatically calculated.
783
+ **Deprecated** will be replaced by ``max_parts`` in Khiops 11.
780
784
results_prefix : str, default ""
781
- Prefix of the result files.
785
+ Prefix of the result files. **Deprecated** will be removed in Khiops 11.
782
786
... :
783
787
See :ref:`core-api-common-params`.
784
788
@@ -911,7 +915,7 @@ def evaluate_predictor(
911
915
If this target value is specified then it guarantees the calculation of lift
912
916
curves for it.
913
917
results_prefix : str, default ""
914
- Prefix of the result files.
918
+ Prefix of the result files. **Deprecated** will be removed in Khiops 11.
915
919
... :
916
920
See :ref:`core-api-common-params`.
917
921
@@ -1083,14 +1087,14 @@ def train_recoder(
1083
1087
substantially increase the training time.
1084
1088
discretization_method : str
1085
1089
Name of the discretization method. Its valid values depend on the task:
1086
- - Supervised: "MODL" (default), "EqualWidth" or "EqualFrequency".
1087
- - Unsupervised: "EqualWidth" (default), "EqualFrequency" or "None".
1090
+ - Supervised: "MODL" (default), "EqualWidth" or "EqualFrequency"
1091
+ - Unsupervised: "EqualWidth" (default), "EqualFrequency" or "None"
1088
1092
min_interval_frequency : int, default 0
1089
- Minimum number of instances in an interval. If equal to 0 it is automatically
1090
- calculated.
1093
+ Minimum number of instances in an interval. If equal to 0 it is
1094
+ automatically calculated. **Deprecated** will be removed in Khiops 11 .
1091
1095
max_intervals : int, default 0
1092
1096
Maximum number of intervals to construct. If equal to 0 it is automatically
1093
- calculated.
1097
+ calculated. **Deprecated** will be replaced by ``max_parts`` in Khiops 11.
1094
1098
informative_variables_only : bool, default ``True``
1095
1099
If ``True`` keeps only informative variables.
1096
1100
max_variables : int, default 0
@@ -1126,14 +1130,16 @@ def train_recoder(
1126
1130
- "none": Keeps the variable as-is
1127
1131
grouping_method : str
1128
1132
Name of the grouping method. Its vaild values depend on the task:
1129
- - Supervised: "MODL" (default) or "BasicGrouping".
1130
- - Unsupervised: "BasicGrouping" (default) or "None".
1133
+ - Supervised: "MODL" (default) or "BasicGrouping"
1134
+ - Unsupervised: "BasicGrouping" (default) or "None"
1131
1135
min_group_frequency : int, default 0
1132
- Minimum number of instances for a group.
1136
+ Minimum number of instances for a group. **Deprecated** will be removed in
1137
+ Khiops 11.
1133
1138
max_groups : int, default 0
1134
1139
Maximum number of groups. If equal to 0 it is automatically calculated.
1140
+ **Deprecated** will be replaced by ``max_parts`` in Khiops 11.
1135
1141
results_prefix : str, default ""
1136
- Prefix of the result files.
1142
+ Prefix of the result files. **Deprecated** will be removed in Khiops 11.
1137
1143
... :
1138
1144
See :ref:`core-api-common-params`.
1139
1145
@@ -1250,7 +1256,7 @@ def deploy_model(
1250
1256
A dictionary containing the output data paths and file paths for a multi-table
1251
1257
dictionary file. For more details see :doc:`/multi_table_primer`.
1252
1258
results_prefix : str, default ""
1253
- Prefix of the result files.
1259
+ Prefix of the result files. **Deprecated** will be removed in Khiops 11.
1254
1260
... :
1255
1261
See :ref:`core-api-common-params`.
1256
1262
@@ -1549,7 +1555,7 @@ def train_coclustering(
1549
1555
min_optimization_time : int, default 0
1550
1556
Minimum optimization time in seconds.
1551
1557
results_prefix : str, default ""
1552
- Prefix of the result files.
1558
+ Prefix of the result files. **Deprecated** will be removed in Khiops 11.
1553
1559
... :
1554
1560
See :ref:`core-api-common-params`.
1555
1561
@@ -1632,7 +1638,7 @@ def simplify_coclustering(
1632
1638
Dictionary that associate variable names to their maximum number of parts to
1633
1639
preserve in the simplified coclustering. If not set there is no limit.
1634
1640
results_prefix : str, default ""
1635
- Prefix of the result files.
1641
+ Prefix of the result files. **Deprecated** will be removed in Khiops 11.
1636
1642
... :
1637
1643
See :ref:`core-api-common-params`.
1638
1644
@@ -1717,7 +1723,7 @@ def prepare_coclustering_deployment(
1717
1723
variables_prefix : str, default ""
1718
1724
Prefix for the variables in the deployment dictionary.
1719
1725
results_prefix : str, default ""
1720
- Prefix of the result files.
1726
+ Prefix of the result files. **Deprecated** will be removed in Khiops 11.
1721
1727
... :
1722
1728
See :ref:`core-api-common-params`.
1723
1729
0 commit comments