You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe the centered predictions are being computed incorrectly. Line 278 in forestci.py takes the average over the predictions, as opposed to the trees. The resulting shape of pred_mean is (forest.n_estimators,) when it should be (X_test.shape[0],). See below:
Hi there,
I believe the centered predictions are being computed incorrectly. Line 278 in
forestci.py
takes the average over the predictions, as opposed to the trees. The resulting shape ofpred_mean
is(forest.n_estimators,)
when it should be(X_test.shape[0],)
. See below:forest-confidence-interval/forestci/forestci.py
Line 278 in 6d2a9c2
Thanks for the great package otherwise! :)
The text was updated successfully, but these errors were encountered: