6 references to Upper
Microsoft.ML.Tests (4)
OnnxConversionTest.cs (1)
391
new TextNormalizingEstimator(mlContext, keepDiacritics: true, caseMode: TextNormalizingEstimator.CaseMode.
Upper
, columns: new[] { ("UpperText", "text") })).Append(
Transformers\TextFeaturizerTests.cs (2)
276
if (caseMode == TextNormalizingEstimator.CaseMode.
Upper
)
304
TestCaseMode(dataView, data, TextNormalizingEstimator.CaseMode.
Upper
);
Transformers\TextNormalizer.cs (1)
57
new 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";
426
else if (_parent._caseMode == TextNormalizingEstimator.CaseMode.
Upper
)