Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update _splitter.pxd #143

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deepforest/tree/_splitter.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ cdef class Splitter:
np.ndarray X_idx_sorted=*) except -1

cdef int node_reset(self, SIZE_t start, SIZE_t end,
double* weighted_n_node_samples) nogil except -1
double* weighted_n_node_samples) except -1 nogil

cdef int node_split(self,
double impurity, # Impurity of the node
SplitRecord* split,
SIZE_t* n_constant_features) nogil except -1
SIZE_t* n_constant_features) except -1 nogil

cdef void node_value(self, double* dest) nogil

Expand Down