Closed
Description
Description
in https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/linear_model/omp.py#L580, it says that coef_
has shape (n_features,) or (n_features, n_targets)
, but in practice I think it's (n_features,) or (n_targets, n_features)
, as the predict
for the base linear model is used.