1 type derived from TextData
Microsoft.ML.Samples (1)
Dynamic\Transforms\Text\ProduceWordBags.cs (1)
112
private class TransformedTextData :
TextData
9 instantiations of TextData
Microsoft.ML.Samples (9)
Dynamic\Transforms\Text\ProduceWordBags.cs (9)
20
new
TextData
(){ Text = "This is an example to compute " +
23
new
TextData
(){ Text = "ML.NET's ProduceWordBags API produces " +
26
new
TextData
(){ Text = "It does so by first tokenizing " +
29
new
TextData
(){ Text = "computing n-grams and their numeric " +
32
new
TextData
(){ Text = "Each position in the output vector " +
35
new
TextData
(){ Text = "The value at each position corresponds " +
38
new
TextData
(){ Text = "the number of times n-gram occurred in " +
41
new
TextData
(){ Text = "the inverse of the number of documents " +
44
new
TextData
(){ Text = "or compute both and multiply together " +
2 references to TextData
Microsoft.ML.Samples (2)
Dynamic\Transforms\Text\ProduceWordBags.cs (2)
18
var samples = new List<
TextData
>()
66
var predictionEngine = mlContext.Model.CreatePredictionEngine<
TextData
,