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