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