Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalCascadeEnsemble committed Sep 11, 2022
1 parent cafa180 commit b746871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lce/_lcetree.py
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ def _predict(node, X, y_pred_final=None):
X = np.concatenate((index, X), axis=1)
y_pred = _predict(self.tree, X, None)
y_pred = y_pred[y_pred[:, 0].argsort()]
y_pred = np.squeeze(y_pred[:, 1:])
y_pred = y_pred[:, 1:]
return y_pred

def set_params(self, **params):
Expand Down
2 changes: 1 addition & 1 deletion lce/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.9"
__version__ = "0.3.0"

0 comments on commit b746871

Please sign in to comment.