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