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
in the last of the file, sorted_indices = np.argsort( linear_svm.coef_, axis=None )[::-1]
should be sorted_indices = np.argsort( linear_svm.coef_, axis=None )[::-1] + 1
beause argsort values start at 0
The text was updated successfully, but these errors were encountered:
in the last of the file,
sorted_indices = np.argsort( linear_svm.coef_, axis=None )[::-1]
should be
sorted_indices = np.argsort( linear_svm.coef_, axis=None )[::-1] + 1
beause argsort values start at 0
The text was updated successfully, but these errors were encountered: