Re: [scikit-learn] Failing check_estimator on py-earth

2017-05-20 Thread Christos Aridas
We faced a similar problem between architectures (32/64bit) with a failing test in imbalanced-learn. Guillaume posted details here https ://github.com/scikit-learn/scikit-learn/issues/8853 Regards, Chris On Saturday, May 20, 2017, Jason R

Re: [scikit-learn] Failing check_estimator on py-earth

2017-05-19 Thread Sebastian Raschka
Hm, I am actually not sure; could be a bug. When I see it correctly, the problem is in https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/utils/estimator_checks.py#L1519 which could be related to the 'astype' calls in https://github.com/scikit-learn/scikit-learn/blob/master/sklear

Re: [scikit-learn] Failing check_estimator on py-earth

2017-05-19 Thread Jason Rudy
Thanks, Sebastian. I'll consider using that platform check trick to disable the test for 32 bit windows. It is a small difference, and perhaps not worth all the effort of tracking down. It's part of check_estimator, so I'd have to disable the entirety of check_estimator I think. However, testin

Re: [scikit-learn] Failing check_estimator on py-earth

2017-05-19 Thread Sebastian Raschka
> I'll probably have to set up a 32 bit environment with a debugger and drill > down to find the bug, Must not be a bug but can simply be due to floating point imprecision. If you checked that this is expected behavior, you could you do sth like import numpy.distutils.system_info as sysinfo if