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