Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FeaturizeText: Add instructions to turn off char- or word-gram generation to the tooltip. #2947

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Microsoft.ML.Transforms/Text/TextFeaturizingEstimator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ public sealed class Options : TransformInputBase

/// <summary>
/// Ngram feature extractor to use for words (WordBag/WordHashBag).
/// Set to <see langword="null" /> to turn off n-gram generation for words.
/// </summary>
public WordBagEstimator.Options WordFeatureExtractor
{
Expand Down Expand Up @@ -160,6 +161,7 @@ public WordBagEstimator.Options WordFeatureExtractor

/// <summary>
/// Ngram feature extractor to use for characters (WordBag/WordHashBag).
/// Set to <see langword="null" /> to turn off n-gram generation for characters.
/// </summary>
public WordBagEstimator.Options CharFeatureExtractor
{
Expand Down