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
/// Describes how the transformer handles one column pair.
1127
+
/// </summary>
1116
1128
publicsealedclassColumnInfo
1117
1129
{
1130
+
/// <summary>
1131
+
/// Name of the column resulting from the transformation of <see cref="InputColumnName"/>.
1132
+
/// </summary>
1118
1133
publicreadonlystringName;
1134
+
/// <summary>
1135
+
/// Name of column to transform. If set to <see langword="null"/>, the value of the <see cref="Name"/> will be used as source.
1136
+
/// </summary>
1119
1137
publicreadonlystringInputColumnName;
1138
+
/// <summary>
1139
+
/// Number of bits to hash into. Must be between 1 and 31, inclusive.
1140
+
/// </summary>
1120
1141
publicreadonlyintHashBits;
1142
+
/// <summary>
1143
+
/// Hashing seed.
1144
+
/// </summary>
1121
1145
publicreadonlyuintSeed;
1146
+
/// <summary>
1147
+
/// Whether the position of each term should be included in the hash.
1148
+
/// </summary>
1122
1149
publicreadonlyboolOrdered;
1150
+
/// <summary>
1151
+
/// During hashing we constuct mappings between original values and the produced hash values.
1152
+
/// 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.
1153
+
/// <see cref="InvertHash"/> specifies the upper bound of the number of distinct input values mapping to a hash that should be retained.
1154
+
/// <value>0</value> does not retain any input values. <value>-1</value> retains all input values mapping to each hash.
1155
+
/// </summary>
1123
1156
publicreadonlyintInvertHash;
1124
1157
1125
1158
/// <summary>
@@ -1136,10 +1169,10 @@ public sealed class ColumnInfo
1136
1169
/// <value>0</value> does not retain any input values. <value>-1</value> retains all input values mapping to each hash.</param>
/// Name of the column resulting from the transformation of <cref see="InputColumnName"/>.
743
+
/// </summary>
735
744
publicreadonlystringName;
745
+
/// <summary>
746
+
/// Name of column to transform. If set to <see langword="null"/>, the value of the <cref see="Name"/> will be used as source.
747
+
/// </summary>
736
748
publicreadonlystringInputColumnName;
749
+
/// <summary>
750
+
/// Whether to combine multiple indicator vectors into a single bag vector instead of concatenating them. This is only relevant when the input column is a vector.
0 commit comments