4 writes to Age
Microsoft.ML.Samples (4)
Dynamic\Transforms\CustomMapping.cs (4)
22new InputData { Age = 26 }, 23new InputData { Age = 35 }, 24new InputData { Age = 34 }, 25new InputData { Age = 28 },
2 references to Age
Microsoft.ML.Samples (2)
Dynamic\Transforms\CustomMapping.cs (2)
32(input, output) => output.IsUnderThirty = input.Age < 30; 52Console.WriteLine($"{row.Age}\t {row.IsUnderThirty}");