5 instantiations of DataPoint
Microsoft.ML.Samples (5)
Dynamic\DataOperations\SaveAndLoadFromText.cs (5)
21
new
DataPoint
(){ Label = 0, Features = 4},
22
new
DataPoint
(){ Label = 0, Features = 5},
23
new
DataPoint
(){ Label = 0, Features = 6},
24
new
DataPoint
(){ Label = 1, Features = 8},
25
new
DataPoint
(){ Label = 1, Features = 9},
3 references to DataPoint
Microsoft.ML.Samples (3)
Dynamic\DataOperations\SaveAndLoadFromText.cs (3)
19
var dataPoints = new List<
DataPoint
>()
42
.CreateEnumerable<
DataPoint
>(loadedData, reuseRowObject: false);
44
foreach (
DataPoint
row in loadedDataEnumerable)