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
* doc updates
* a
* Update src/Microsoft.ML.Transforms/CustomMappingTransformer.cs
* revert changes to internal API
* Revert "revert changes to internal API"
This reverts commit 017e001.
* revert changes to internal API
/// * [Predefined and custom stopwords removal](https://en.wikipedia.org/wiki/Stop_words)
54
-
/// * [Word-based or character-based Ngram extraction and SkipGram extraction (through the advanced [options](xref:Microsoft.ML.Transforms.TextFeaturizingEstimator.Options.WordFeatureExtractor))](https://en.wikipedia.org/wiki/N-gram)
54
+
/// * [Word-based or character-based Ngram extraction and SkipGram extraction](https://en.wikipedia.org/wiki/N-gram)
55
55
/// * [TF, IDF or TF-IDF](https://en.wikipedia.org/wiki/Tf%E2%80%93idf)
/// By default the features are made of (word/character) n-grams/skip-grams and the number of features are equal to the vocabulary size found by analyzing the data.
58
+
/// By default the features are made of (word/character) n-grams/skip-grams, and the number of features is equal to the vocabulary size found by analyzing the data.
59
59
/// To output an additional column with the tokens generated, use [OutputTokensColumnName](xref:Microsoft.ML.Transforms.Text.TextFeaturizingEstimator.Options.OutputTokensColumnName).
60
60
/// The number of features can also be specified by selecting the maximum number of n-gram to keep in the <xref:Microsoft.ML.Transforms.Text.TextFeaturizingEstimator.Options>, where the estimator can be further tuned.
61
61
///
62
-
/// Check the See Also section for links to usage examples.
62
+
/// For links to usage examples, see <see cref="TextCatalog.FeaturizeText(TransformsCatalog.TextTransforms, string, Options, string[])"/> and <see cref="TextCatalog.FeaturizeText(TransformsCatalog.TextTransforms, string, string)"/>.
/// Norm of the output vector. It will be normalized to one.
213
+
/// Gets the norm of the output vector. It will be normalized to one.
212
214
/// </summary>
213
215
[Argument(ArgumentType.AtMostOnce,HelpText="Normalize vectors (rows) individually by rescaling them to unit norm.",Name="VectorNormalizer",ShortName="norm",SortOrder=13)]
214
216
publicNormFunctionNorm=NormFunction.L2;
215
217
216
218
/// <summary>
217
-
/// Ngram feature extractor to use for words (WordBag/WordHashBag).
218
-
/// Set to <see langword="null" /> to turn off n-gram generation for words.
219
+
/// Gets or sets the n-gram feature extractor to use for words (WordBag/WordHashBag).
219
220
/// </summary>
221
+
/// <value>
222
+
/// Set to <see langword="null" /> to turn off n-gram generation for words.
0 commit comments