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
@@ -402,7 +402,7 @@ public override IEstimator<ITransformer> Reconcile(IHostEnvironment env,
402
402
/// <param name="skipLength">Maximum number of tokens to skip when constructing an ngram.</param>
403
403
/// <param name="allLengths">Whether to include all ngram lengths up to <paramref name="ngramLength"/> or only <paramref name="ngramLength"/>.</param>
404
404
/// <param name="seed">Hashing seed.</param>
405
-
/// <param name="ordered">Whether the position of each source column should be included in the hash (when there are multiple source columns).</param>
405
+
/// <param name="useOrderedHashing">Whether the position of each source column should be included in the hash (when there are multiple source columns).</param>
406
406
/// <param name="invertHash">During hashing we constuct mappings between original values and the produced hash values.
407
407
/// 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.
408
408
/// <paramref name="invertHash"/> specifies the upper bound of the number of distinct input values mapping to a hash that should be retained.
@@ -413,8 +413,8 @@ public static Vector<float> ProduceHashedWordBags(this Scalar<string> input,
@@ -580,7 +580,7 @@ public override IEstimator<ITransformer> Reconcile(IHostEnvironment env,
580
580
/// <param name="skipLength">Maximum number of tokens to skip when constructing an ngram.</param>
581
581
/// <param name="allLengths">Whether to include all ngram lengths up to <paramref name="ngramLength"/> or only <paramref name="ngramLength"/>.</param>
582
582
/// <param name="seed">Hashing seed.</param>
583
-
/// <param name="ordered">Whether the position of each source column should be included in the hash (when there are multiple source columns).</param>
583
+
/// <param name="useOrderedHashing">Whether the position of each source column should be included in the hash (when there are multiple source columns).</param>
584
584
/// <param name="invertHash">During hashing we constuct mappings between original values and the produced hash values.
585
585
/// 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.
586
586
/// <paramref name="invertHash"/> specifies the upper bound of the number of distinct input values mapping to a hash that should be retained.
@@ -591,7 +591,7 @@ public static Vector<float> ProduceHashedNgrams(this VarVector<Key<uint, string>
[Argument(ArgumentType.AtMostOnce,HelpText="Limit the number of keys used to generate the slot name to this many. 0 means no invert hashing, -1 means no limit.",
@@ -1073,7 +1073,7 @@ internal static class Defaults
1073
1073
internalconstintNumberOfBits=16;
1074
1074
internalconstuintSeed=314489979;
1075
1075
internalconstboolRehashUnigrams=false;
1076
-
internalconstboolOrdered=true;
1076
+
internalconstboolUseOrderedHashing=true;
1077
1077
internalconstintInvertHash=0;
1078
1078
}
1079
1079
@@ -1095,7 +1095,7 @@ internal static class Defaults
1095
1095
/// <param name="skipLength">Maximum number of tokens to skip when constructing an ngram.</param>
1096
1096
/// <param name="allLengths">Whether to include all ngram lengths up to <paramref name="ngramLength"/> or only <paramref name="ngramLength"/>.</param>
1097
1097
/// <param name="seed">Hashing seed.</param>
1098
-
/// <param name="ordered">Whether the position of each source column should be included in the hash (when there are multiple source columns).</param>
1098
+
/// <param name="useOrderedHashing">Whether the position of each source column should be included in the hash (when there are multiple source columns).</param>
1099
1099
/// <param name="invertHash">During hashing we constuct mappings between original values and the produced hash values.
1100
1100
/// 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.
1101
1101
/// <paramref name="invertHash"/> specifies the upper bound of the number of distinct input values mapping to a hash that should be retained.
0 commit comments