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="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>
@@ -407,14 +407,14 @@ public override IEstimator<ITransformer> Reconcile(IHostEnvironment env,
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.
409
409
/// <value>0</value> does not retain any input values. <value>-1</value> retains all input values mapping to each hash.</param>
@@ -485,8 +485,8 @@ public override IEstimator<ITransformer> Reconcile(IHostEnvironment env,
485
485
/// Produces a bag of counts of ngrams (sequences of consecutive words ) in a given tokenized text.
486
486
/// It does so by building a dictionary of ngrams and using the id in the dictionary as the index in the bag.
487
487
///
488
-
/// /// <see cref="ProduceNgrams"/> is different from <see cref="WordBagEstimatorStaticExtensions.ToBagofWords"/>
489
-
/// in a way that <see cref="ProduceNgrams"/> takes tokenized text as input while <see cref="WordBagEstimatorStaticExtensions.ToBagofWords"/> tokenizes text internally.
488
+
/// /// <see cref="ProduceNgrams"/> is different from <see cref="WordBagEstimatorStaticExtensions.ProduceWordBags"/>
489
+
/// in a way that <see cref="ProduceNgrams"/> takes tokenized text as input while <see cref="WordBagEstimatorStaticExtensions.ProduceWordBags"/> tokenizes text internally.
490
490
/// </summary>
491
491
/// <param name="input">The column to apply to.</param>
@@ -571,8 +571,8 @@ public override IEstimator<ITransformer> Reconcile(IHostEnvironment env,
571
571
/// Produces a bag of counts of ngrams (sequences of consecutive words of length 1-n) in a given tokenized text.
572
572
/// It does so by hashing each ngram and using the hash value as the index in the bag.
573
573
///
574
-
/// <see cref="ProduceHashedNgrams"/> is different from <see cref="WordHashBagEstimatorStaticExtensions.ToBagofHashedWords"/>
575
-
/// in a way that <see cref="ProduceHashedNgrams"/> takes tokenized text as input while <see cref="WordHashBagEstimatorStaticExtensions.ToBagofHashedWords"/> tokenizes text internally.
574
+
/// <see cref="ProduceHashedNgrams"/> is different from <see cref="WordHashBagEstimatorStaticExtensions.ProduceHashedWordBags"/>
575
+
/// in a way that <see cref="ProduceHashedNgrams"/> takes tokenized text as input while <see cref="WordHashBagEstimatorStaticExtensions.ProduceHashedWordBags"/> tokenizes text internally.
576
576
/// </summary>
577
577
/// <param name="input">The column to apply to.</param>
578
578
/// <param name="numberOfBits">Number of bits to hash into. Must be between 1 and 30, inclusive.</param>
0 commit comments