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