This repository was archived by the owner on Jul 27, 2018. It is now read-only.
fixed IndexError that arises by using c.classes_ as np index in base.py#28
Open
whitmera wants to merge 1 commit intoviisar:masterfrom
Open
fixed IndexError that arises by using c.classes_ as np index in base.py#28whitmera wants to merge 1 commit intoviisar:masterfrom
whitmera wants to merge 1 commit intoviisar:masterfrom
Conversation
…s not ints, as a column index for a numpy array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Brew threw an Index Error at line 189 in base.py.
187 if mode == 'probs':
188 probas = np.zeros((X.shape[0], n_classes))
--> 189 probas[:, list(c.classes_)] = c.predict_proba(X)
190 out[:, :, i] = probas
191
IndexError: only integers, slices (
:), ellipsis (...), numpy.newaxis (None) and integer or boolean arrays are valid indicesIt looks like it i trying to use floats as column indices for probas. this could be resolved by making change list(c.classes_) to list(c.classes.astype(int)) but I don't see the need to pre-create probas.