Is it possible to get the accuracy/precision of a predicted label? Is there an attribute I can use the extract it? Basically some thing like:
public class EmployeePrediction
{
[ColumnName("PredictedLabel")]
public bool Outcome;
[SomeAttribute]
public float Accuracy;
}