Predict label (0/1) using 0.5 threshold.
int predictOne(List<double> features) => predictProba(features) >= 0.5 ? 1 : 0;