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
Around line 39 in the code for FCBF uses np.zeros((n_features, 2), dtypes='object') which throws an error. Numpy documentation states the parameter should be dtype (without the 's'). So the line should be np.zeros((n_features, 2), dtype='object') instead. It was an easy enough fix on my own and I saved a separate .py file with the fixed version and it worked.
The text was updated successfully, but these errors were encountered:
Around line 39 in the code for FCBF uses
np.zeros((n_features, 2), dtypes='object')
which throws an error. Numpy documentation states the parameter should bedtype
(without the 's'). So the line should benp.zeros((n_features, 2), dtype='object')
instead. It was an easy enough fix on my own and I saved a separate .py file with the fixed version and it worked.The text was updated successfully, but these errors were encountered: