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
@@ -861,12 +858,28 @@ public VBuffer<ReadOnlyMemory<char>>[] SlotNamesMetadata(out VectorDataViewType[
861
858
}
862
859
863
860
/// <summary>
864
-
/// Produces a bag of counts of ngrams (sequences of consecutive words of length 1-n) in a given text.
865
-
/// It does so by hashing each ngram and using the hash value as the index in the bag.
866
-
///
867
-
/// <see cref="NgramHashingEstimator"/> is different from <see cref="WordHashBagEstimator"/> in a way that <see cref="NgramHashingEstimator"/>
868
-
/// takes tokenized text as input while <see cref="WordHashBagEstimator"/> tokenizes text internally.
861
+
/// <see cref="IEstimator{TTransformer}"/> for the <see cref="NgramHashingTransformer"/>.
869
862
/// </summary>
863
+
/// <remarks>
864
+
/// <format type="text/markdown">< |
870
+
/// | Output column data type | Vector of known size of <xref:System.Single> |
871
+
///
872
+
/// The resulting <xref:Microsoft.ML.Transforms.Text.NgramHashingTransformer/> creates a new column, named as specified in the output column name parameters, and
873
+
/// produces a vector of counts of n-grams (sequences of consecutive words of length 1-n) from a given data.
874
+
/// It does so by hashing each n-gram and using the hash value as the index in the bag.
875
+
///
876
+
/// <xref:Microsoft.ML.Transforms.Text.NgramHashingEstimator> is different from <xref:Microsoft.ML.Transforms.Text.WordHashBagEstimator>
877
+
/// in a way that The former takes tokenized text as input while the latter tokenizes text internally.
878
+
/// See the See Also section for links to examples of the usage.
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.</param>
414
-
/// <param name="inputColumnName">Name of the column to transform. If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnNames"/>.</param>
450
-
/// <param name="inputColumnNames">Names of the columns to transform. If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
0 commit comments