9 references to CustomStopWordsRemovingEstimator
Microsoft.ML.Tests (1)
Transformers\TextFeaturizerTests.cs (1)
244
StopWordsRemoverOptions = new
CustomStopWordsRemovingEstimator
.Options()
Microsoft.ML.Transforms (8)
Text\StopWordsRemovingTransformer.cs (2)
686
/// <see cref="ITransformer"/> resulting from fitting a <see cref="
CustomStopWordsRemovingEstimator
"/>.
1229
base(Contracts.CheckRef(env, nameof(env)).Register(nameof(
CustomStopWordsRemovingEstimator
)), new CustomStopWordsRemovingTransformer(env, stopwords, columns))
Text\TextCatalog.cs (3)
291
/// Create a <see cref="
CustomStopWordsRemovingEstimator
"/>, which copies the data from the column specified in <paramref name="inputColumnName"/>
314
/// Create a <see cref="
CustomStopWordsRemovingEstimator
"/>, which copies the data from the column specified in <paramref name="inputColumnName"/>
330
public static
CustomStopWordsRemovingEstimator
RemoveStopWords(this TransformsCatalog.TextTransforms catalog,
Text\TextFeaturizingEstimator.cs (3)
150
/// <description>The <see cref="
CustomStopWordsRemovingEstimator
.Options"/> uses user provided list of stop words.</description>
169
else if (_stopWordsRemoverOptions is
CustomStopWordsRemovingEstimator
.Options)
171
var stopwords = (_stopWordsRemoverOptions as
CustomStopWordsRemovingEstimator
.Options).StopWords;