5 writes to UseAllLengths
Microsoft.ML.IntegrationTests (1)
DataTransformation.cs (1)
140CharFeatureExtractor = new WordBagEstimator.Options() { NgramLength = 3, UseAllLengths = false },
Microsoft.ML.Samples (2)
Dynamic\Transforms\Text\FeaturizeTextWithOptions.cs (2)
61UseAllLengths = true 68UseAllLengths = false
Microsoft.ML.Transforms (2)
Text\TextFeaturizingEstimator.cs (1)
276CharFeatureExtractor = new WordBagEstimator.Options() { NgramLength = 3, UseAllLengths = false };
Text\WrappedTextTransformers.cs (1)
86UseAllLengths = NgramExtractingEstimator.Defaults.UseAllLengths;
2 references to UseAllLengths
Microsoft.ML.Transforms (2)
Text\TextFeaturizingEstimator.cs (2)
232extractor.UseAllLengths = _wordFeatureExtractor.UseAllLengths; 265extractor.UseAllLengths = _charFeatureExtractor.UseAllLengths;