10 references to StopWords
Microsoft.ML.Transforms (10)
Text\StopWordsRemovingTransformer.cs (10)
287
var requiredResources = new bool[
StopWords
.Length];
321
Contracts.Assert(0 <= (int)lang && (int)lang < Utils.Size(
StopWords
));
323
if (
StopWords
[(int)lang] == null)
337
Interlocked.CompareExchange(ref
StopWords
[(int)lang], stopWordsList, null);
363
_resourcesExist = new bool?[
StopWords
.Length];
434
if (
StopWords
[(int)langToUse].Get(buffer) == null)
474
var words =
StopWords
[iinfo].Select(item => Convert.ToString(item.Value));
475
node.AddAttribute("stopwords",
StopWords
[iinfo].Select(item => Convert.ToString(item.Value)));
501
Contracts.Assert(0 <= langVal && langVal < Utils.Size(
StopWords
));
503
return
StopWords
[langVal] != null ||