3 writes to Label
Microsoft.ML.Tests (3)
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (3)
728
public static void IncomeMapping(InputRow input, OutputRow output) => output.
Label
= input.Income > 50000;
768
Action<InputRow, OutputRow> mapping = (input, output) => output.
Label
= input.Income > 50000;
777
Action<InputRow, OutputRow> mapping = (input, output) => output.
Label
= input.Income > 50000;