Skip to content

Commit

Permalink
UPD: take TCO comments into account
Browse files Browse the repository at this point in the history
  • Loading branch information
Candice Moyet committed Jul 19, 2023
1 parent 93ed05b commit aa3431d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapie/conformity_scores/residual_conformity_scores.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def get_signed_conformity_scores(
)

# reconstruct array with nan and conformity scores
complete_signed_cs = np.zeros(y_pred.shape)
complete_signed_cs = np.zeros_like(y_pred)
complete_signed_cs[cal_indexes] = signed_conformity_scores
complete_signed_cs[train_indexes] = np.full(
(train_indexes.shape[0],),
Expand Down

0 comments on commit aa3431d

Please sign in to comment.