6 references to Upper
Microsoft.ML.Tests (4)
OnnxConversionTest.cs (1)
391new TextNormalizingEstimator(mlContext, keepDiacritics: true, caseMode: TextNormalizingEstimator.CaseMode.Upper, columns: new[] { ("UpperText", "text") })).Append(
Transformers\TextFeaturizerTests.cs (2)
276if (caseMode == TextNormalizingEstimator.CaseMode.Upper) 304TestCaseMode(dataView, data, TextNormalizingEstimator.CaseMode.Upper);
Transformers\TextNormalizer.cs (1)
57new TextNormalizingEstimator(ML, caseMode: TextNormalizingEstimator.CaseMode.Upper, columns: new[] { ("UpperText", "text") })).Append(
Microsoft.ML.Transforms (2)
Text\TextNormalizing.cs (2)
250(_parent._caseMode == TextNormalizingEstimator.CaseMode.Upper) ? "UPPER" : "NONE"; 426else if (_parent._caseMode == TextNormalizingEstimator.CaseMode.Upper)