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
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.
119
119
/// This column's data type will be a vector of <see cref="System.Single"/> if <paramref name="outputKind"/> is
120
120
/// <see cref="OneHotEncodingEstimator.OutputKind.Bag"/>, <see cref="OneHotEncodingEstimator.OutputKind.Indicator"/>, and <see cref="OneHotEncodingEstimator.OutputKind.Binary"/>.
121
121
/// If <paramref name="outputKind"/> is <see cref="OneHotEncodingEstimator.OutputKind.Key"/>, this column's data type will be a key in the case of a scalar input column
122
-
/// or a vector of keys in the case of a vector input column.
122
+
/// or a vector of keys in the case of a vector input column. </param>
123
123
/// <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.
124
124
/// This column's data type can be scalar or vector of numeric, text, boolean, <see cref="System.DateTime"/> or <see cref="System.DateTimeOffset"/>.</param>
/// <param name="numberOfBits">Number of bits to hash into. Must be between 1 and 30, inclusive.</param>
127
127
/// <param name="seed">Hashing seed.</param>
128
128
/// <param name="useOrderedHashing">Whether the position of each term should be included in the hash.</param>
129
129
/// <param name="maximumNumberOfInverts">During hashing we constuct mappings between original values and the produced hash values.
130
-
/// Text representation of original values are stored in the slot names of the metadata for the new column.Hashing,
131
-
/// as such, can map many initial values to one.</param>
130
+
/// Text representation of original values are stored in the slot names of the metadata for the new column.Hashing, as such, can map many initial values to one.
132
131
/// <paramref name="maximumNumberOfInverts"/> specifies the upper bound of the number of distinct input values mapping to a hash that should be retained.
133
132
/// <value>0</value> does not retain any input values. <value>-1</value> retains all input values mapping to each hash.</param>
0 commit comments