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.
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.