19 references to FeaturizeText
Microsoft.ML.IntegrationTests (2)
DataTransformation.cs (1)
137var pipeline = mlContext.Transforms.Text.FeaturizeText("Features",
Debugging.cs (1)
49var pipeline = mlContext.Transforms.Text.FeaturizeText(
Microsoft.ML.PerformanceTests (2)
FeaturizeTextBench.cs (1)
62var featurizer = _mlContext.Transforms.Text.FeaturizeText(textColumn, new TextFeaturizingEstimator.Options()
StochasticDualCoordinateAscentClassifierBench.cs (1)
102var text = _mlContext.Transforms.Text.FeaturizeText("WordEmbeddings", new TextFeaturizingEstimator.Options
Microsoft.ML.Samples (2)
Dynamic\TextTransform.cs (1)
51.FeaturizeText(customizedColumnName,
Dynamic\Transforms\Text\FeaturizeTextWithOptions.cs (1)
71var textPipeline = mlContext.Transforms.Text.FeaturizeText("Features",
Microsoft.ML.Tests (12)
Transformers\TextFeaturizerTests.cs (12)
52var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 76var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 106var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, null); 148var pipeline = ML.Transforms.Text.FeaturizeText("Features", options); 189var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 217var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 251var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 268var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 317var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 354var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 392var pipeline = ML.Transforms.Text.FeaturizeText("Features", options, "A"); 436var feat = ML.Transforms.Text.FeaturizeText("Data", new TextFeaturizingEstimator.Options { OutputTokensColumnName = "OutputTokens" }, new[] { "text" });
Microsoft.ML.Transforms (1)
Text\TextFeaturizingEstimator.cs (1)
65/// <seealso cref="TextCatalog.FeaturizeText(TransformsCatalog.TextTransforms, string, Options, string[])"/>