boruta_py
boruta_py copied to clipboard
AttributeError: module 'numpy' has no attribute 'int'.
Hi, While fitting the model, i get the following error: dec_reg = np.zeros(n_feat, dtype=np.int) AttributeError: module 'numpy' has no attribute 'int'. Thanks!
I solved the issue by np.int to int. Thanks!
see https://github.com/scikit-learn-contrib/boruta_py/issues/122#issuecomment-1842417297
Does it work w the new version on pypi?
Does it work with the new version on pypi?
I have not try with new version of pypi. As mentioned earlier I got it working by changing np.int to int.
Is the new version differing in performance compared to older version?