5 instantiations of Options
Microsoft.ML.Core.Tests (1)
UnitTests\TestEntryPoints.cs (1)
1808
StopWordsRemoverOptions = new StopWordsRemovingEstimator.
Options
(),
Microsoft.ML.PerformanceTests (1)
StochasticDualCoordinateAscentClassifierBench.cs (1)
106
StopWordsRemoverOptions = new StopWordsRemovingEstimator.
Options
(),
Microsoft.ML.Samples (2)
Dynamic\TextTransform.cs (1)
59
new StopWordsRemovingEstimator.
Options
()
Dynamic\Transforms\Text\FeaturizeTextWithOptions.cs (1)
52
StopWordsRemoverOptions = new StopWordsRemovingEstimator.
Options
()
Microsoft.ML.Tests (1)
Transformers\TextFeaturizerTests.cs (1)
51
var 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>
164
if (_stopWordsRemoverOptions is StopWordsRemovingEstimator.
Options
)
167
Language = (_stopWordsRemoverOptions as StopWordsRemovingEstimator.
Options
).Language;