scikit-learn-contrib / skope-rules

machine learning with logical rules in Python
http://skope-rules.readthedocs.io
Other
599 stars 96 forks source link

pip install skope-rules brings the previous version of the code before fixing issue #47 #65

Open Manuelhrokr opened 1 year ago

Manuelhrokr commented 1 year ago

Hi,

I made a test installation of the library using pip install skope-rules (as indicated in the original Github repo), and the installation brings the previous version of the code using mask = ~samples instead of mask = ~indices_to_mask(samples, n_samples). This was an error on the OOB calculation of each base estimator, which I believe was corrected on issue #47.

Thanks!