6 instantiations of InputData
Microsoft.ML.Samples (6)
Dynamic\DataOperations\FilterRowsByCustomPredicate.cs (6)
19
new
InputData
() { Name = "Joey" },
20
new
InputData
() { Name = "Chandler" },
21
new
InputData
() { Name = "Ross" },
22
new
InputData
() { Name = "Monica" },
23
new
InputData
() { Name = "Rachel" },
24
new
InputData
() { Name = "Phoebe" },
4 references to InputData
Microsoft.ML.Samples (4)
Dynamic\DataOperations\FilterRowsByCustomPredicate.cs (4)
31
foreach (
var
row in enumerableOfData)
48
var filteredData = mlContext.Data.FilterByCustomPredicate<
InputData
>(
53
.CreateEnumerable<
InputData
>(filteredData,
57
foreach (
var
row in enumerable)