1 type derived from TextData
Microsoft.ML.Samples (1)
Dynamic\Transforms\Text\ProduceNgrams.cs (1)
112private class TransformedTextData : TextData
8 instantiations of TextData
Microsoft.ML.Samples (8)
Dynamic\Transforms\Text\ProduceNgrams.cs (8)
20new TextData(){ Text = "This is an example to compute n-grams." }, 21new TextData(){ Text = "N-gram is a sequence of 'N' consecutive " + 24new TextData(){ Text = "ML.NET's ProduceNgrams API produces " + 27new TextData(){ Text = "Each position in the vector corresponds " + 30new TextData(){ Text = "The value at each position corresponds " + 33new TextData(){ Text = "the number of times n-gram occurred in " + 36new TextData(){ Text = "the inverse of the number of documents " + 39new TextData(){ Text = "or compute both and multiply together " +
2 references to TextData
Microsoft.ML.Samples (2)
Dynamic\Transforms\Text\ProduceNgrams.cs (2)
18var samples = new List<TextData>() 69var predictionEngine = mlContext.Model.CreatePredictionEngine<TextData,