5 instantiations of Options
Microsoft.ML.Core.Tests (1)
UnitTests\TestEntryPoints.cs (1)
1808StopWordsRemoverOptions = new StopWordsRemovingEstimator.Options(),
Microsoft.ML.PerformanceTests (1)
StochasticDualCoordinateAscentClassifierBench.cs (1)
106StopWordsRemoverOptions = new StopWordsRemovingEstimator.Options(),
Microsoft.ML.Samples (2)
Dynamic\TextTransform.cs (1)
59new StopWordsRemovingEstimator.Options()
Dynamic\Transforms\Text\FeaturizeTextWithOptions.cs (1)
52StopWordsRemoverOptions = new StopWordsRemovingEstimator.Options()
Microsoft.ML.Tests (1)
Transformers\TextFeaturizerTests.cs (1)
51var options = new TextFeaturizingEstimator.Options() { StopWordsRemoverOptions = new StopWordsRemovingEstimator.Options(), OutputTokensColumnName = "OutputTokens" };
3 references to Options
Microsoft.ML.Transforms (3)
Text\TextFeaturizingEstimator.cs (3)
147/// <description>The <see cref="StopWordsRemovingEstimator.Options"/> removes the language specific list of stop words from the input.</description> 164if (_stopWordsRemoverOptions is StopWordsRemovingEstimator.Options) 167Language = (_stopWordsRemoverOptions as StopWordsRemovingEstimator.Options).Language;