Predict a single example's target value.
double predictOne(List<double> features) { if (_coeffs == null) throw StateError('Model not fitted'); return linearRegressionPredict(_coeffs!, features); }