1 write to Stopword
Microsoft.ML.Transforms (1)
Text\TextFeaturizingEstimator.cs (1)
175
Stopword
= string.Join(",", stopwords)
3 references to Stopword
Microsoft.ML.Transforms (3)
Text\StopWordsRemovingTransformer.cs (3)
740
return new CustomStopWordsRemovingTransformer(env,
Stopword
, DataFile, StopwordsColumn, Loader, column.Select(x => (x.Name, x.Source)).ToArray());
861
ch.CheckUserArg(stopWordsMap.Count > 0, nameof(Options.
Stopword
), "stopwords is empty");
1047
transfrom = new CustomStopWordsRemovingTransformer(env, options.
Stopword
, options.DataFile, options.StopwordsColumn, options.Loader, cols);