// Type-system proof: calling predict() on an unfitted LogisticRegression must
// not compile. LogisticRegression<F> implements Fit but not Predict. Only
// FittedLogisticRegression<F> (returned by fit()) implements Predict.
use Predict;
use LogisticRegression;
use Array2;