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/Dracula/CountTargetEncodingTransformer.cs
+29-2Lines changed: 29 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,30 @@
24
24
25
25
namespaceMicrosoft.ML.Transforms
26
26
{
27
+
/// <summary>
28
+
/// Transforms a categorical column into a set of features that includes the count of each label class,
29
+
/// the log-odds for each label class and the back-off indicator.
30
+
/// </summary>
31
+
/// <remarks>
32
+
/// <format type="text/markdown"><![CDATA[
33
+
/// ### Estimator Characteristics
34
+
/// | | |
35
+
/// | -- | -- |
36
+
/// | Does this estimator need to look at the data to train its parameters? | Yes |
37
+
/// | Input column data type | Any |
38
+
/// | Output column data type | Vector of <xref:System.Single>. |
39
+
///
40
+
/// The resulting <xref:Microsoft.ML.Transforms.CountTargetEncodingTransformer> creates a new column, named as specified in the output column name parameters,
41
+
/// containing three parts: the count of each label class, the log-odds for each label class and the back-off indicator.
42
+
///
43
+
/// Check the See Also section for links to usage examples.
0 commit comments