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
indices = np.argsort(importances[::-1]) # this causes the wrong order for plt.show() at the end of the code chunk (though the values are correct)
indices = importances.argsort()[::-1] # gives correct order
in the remote chance that this was a legit issue, It would be a privilege to be mentioned!
The text was updated successfully, but these errors were encountered:
indices = np.argsort(importances[::-1]) # this causes the wrong order for plt.show() at the end of the code chunk (though the values are correct)
indices = importances.argsort()[::-1] # gives correct order
in the remote chance that this was a legit issue, It would be a privilege to be mentioned!
The text was updated successfully, but these errors were encountered: