3 instantiations of TextNormalizingTransformer
Microsoft.ML.Transforms (3)
Text\TextNormalizing.cs (3)
150
return new
TextNormalizingTransformer
(host, ctx);
185
return new
TextNormalizingTransformer
(env, options.TextCase, options.KeepDiacritics, options.KeepPunctuations, options.KeepNumbers, cols).MakeDataTransform(input);
570
new
TextNormalizingTransformer
(env, caseMode, keepDiacritics, keepPunctuations, keepNumbers, columns))
18 references to TextNormalizingTransformer
Microsoft.ML.Samples (1)
Dynamic\Transforms\Text\NormalizeText.cs (1)
33
var
normTextTransformer = normTextPipeline.Fit(emptyDataView);
Microsoft.ML.Transforms (17)
Text\TextNormalizing.cs (17)
18
[assembly: LoadableClass(
TextNormalizingTransformer
.Summary, typeof(IDataTransform), typeof(
TextNormalizingTransformer
), typeof(
TextNormalizingTransformer
.Options), typeof(SignatureDataTransform),
21
[assembly: LoadableClass(
TextNormalizingTransformer
.Summary, typeof(IDataTransform), typeof(
TextNormalizingTransformer
), null, typeof(SignatureLoadDataTransform),
22
"Text Normalizer Transform",
TextNormalizingTransformer
.LoaderSignature)]
24
[assembly: LoadableClass(
TextNormalizingTransformer
.Summary, typeof(
TextNormalizingTransformer
), null, typeof(SignatureLoadModel),
25
"Text Normalizer Transform",
TextNormalizingTransformer
.LoaderSignature)]
27
[assembly: LoadableClass(typeof(IRowMapper), typeof(
TextNormalizingTransformer
), null, typeof(SignatureLoadRowMapper),
28
"Text Normalizer Transform",
TextNormalizingTransformer
.LoaderSignature)]
86
loaderAssemblyName: typeof(
TextNormalizingTransformer
).Assembly.FullName);
144
private static
TextNormalizingTransformer
Create(IHostEnvironment env, ModelLoadContext ctx)
201
private readonly
TextNormalizingTransformer
_parent;
203
public Mapper(
TextNormalizingTransformer
parent, DataViewSchema inputSchema)
476
/// <see cref="IEstimator{TTransformer}"/> for the <see cref="
TextNormalizingTransformer
"/>.
498
public sealed class TextNormalizingEstimator : TrivialEstimator<
TextNormalizingTransformer
>