You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Microsoft.ML.Transforms/CountFeatureSelection.cs
+10-9
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,6 @@
10
10
usingMicrosoft.ML;
11
11
usingMicrosoft.ML.CommandLine;
12
12
usingMicrosoft.ML.Data;
13
-
usingMicrosoft.ML.EntryPoints;
14
13
usingMicrosoft.ML.Internal.Utilities;
15
14
usingMicrosoft.ML.Transforms.FeatureSelection;
16
15
@@ -54,23 +53,25 @@ public sealed class ColumnOptions
54
53
publicreadonlystringName;
55
54
/// <summary> Name of the column to transform.</summary>
56
55
publicreadonlystringInputColumnName;
57
-
/// <summary>If the count of non-default values for a slot is greater than or equal to this threshold in the training data, the slot is preserved.</summary>
58
-
publicreadonlylongMinCount;
56
+
/// <summary>If the count of non-default values for a slot is greater than or equal to this threshold in the training data, the slot is preserved.</summary>
57
+
publicreadonlylongCount;
59
58
60
59
/// <summary>
61
60
/// Describes the parameters of the feature selection process for a column pair.
62
61
/// </summary>
63
62
/// <param name="name">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.</param>
64
63
/// <param name="inputColumnName">Name of the column to transform. If set to <see langword="null"/>, the value of the <paramref name="name"/> will be used as source.</param>
65
-
/// <param name="minCount">If the count of non-default values for a slot is greater than or equal to this threshold in the training data, the slot is preserved.</param>
/// <param name="count">If the count of non-default values for a slot is greater than or equal to this threshold in the training data, the slot is preserved.</param>
/// <param name="labelColumn">Name of the column to use for labels.</param>
17
+
/// <param name="labelColumnName">The name of the label column.</param>
18
18
/// <param name="slotsInOutput">The maximum number of slots to preserve in the output. The number of slots to preserve is taken across all input columns.</param>
19
-
/// <param name="numBins">Max number of bins used to approximate mutual information between each input column and the label column. Power of 2 recommended.</param>
19
+
/// <param name="numberOfBins">Max number of bins used to approximate mutual information between each input column and the label column. Power of 2 recommended.</param>
20
20
/// <param name="columns">Specifies the names of the input columns for the transformation, and their respective output column names.</param>
21
21
/// <example>
22
22
/// <format type="text/markdown">
@@ -26,20 +26,20 @@ public static class FeatureSelectionCatalog
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.</param>
39
39
/// <param name="inputColumnName">Name of column to transform. If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
40
-
/// <param name="labelColumn">Name of the column to use for labels.</param>
40
+
/// <param name="labelColumnName">The name of the label column.</param>
41
41
/// <param name="slotsInOutput">The maximum number of slots to preserve in the output. The number of slots to preserve is taken across all input columns.</param>
42
-
/// <param name="numBins">Max number of bins used to approximate mutual information between each input column and the label column. Power of 2 recommended.</param>
42
+
/// <param name="numberOfBins">Max number of bins used to approximate mutual information between each input column and the label column. Power of 2 recommended.</param>
43
43
/// <example>
44
44
/// <format type="text/markdown">
45
45
/// <![CDATA[
@@ -49,10 +49,10 @@ public static MutualInformationFeatureSelectingEstimator SelectFeaturesBasedOnMu
Copy file name to clipboardExpand all lines: src/Microsoft.ML.Transforms/MutualInformationFeatureSelection.cs
+4-4
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ internal sealed class Options : TransformInputBase
66
66
/// <param name="env">The environment to use.</param>
67
67
/// <param name="labelColumn">Name of the column to use for labels.</param>
68
68
/// <param name="slotsInOutput">The maximum number of slots to preserve in the output. The number of slots to preserve is taken across all input columns.</param>
69
-
/// <param name="numBins">Max number of bins used to approximate mutual information between each input column and the label column. Power of 2 recommended.</param>
69
+
/// <param name="numberOfBins">Max number of bins used to approximate mutual information between each input column and the label column. Power of 2 recommended.</param>
70
70
/// <param name="columns">Specifies the names of the input columns for the transformation, and their respective output column names.</param>
71
71
/// <example>
72
72
/// <format type="text/markdown">
@@ -78,7 +78,7 @@ internal sealed class Options : TransformInputBase
0 commit comments