How much sklearn can i use with pypy?

The pypy project is currently adding numpy support. My impression is that the sklearn library is mainly based on numpy. Will I be able to use most of this library or other requirements that are not yet supported?

+4
source share
1 answer

Officially, none of this. If you want to make a port, go ahead (and please report the results on the mailing list), but PyPy is simply not supported, because scikit-learn uses many, many parts of NumPy and SciPy, and also has a lot of C, C ++ and Cython extension code.

+6
source

Source: https://habr.com/ru/post/1536137/


All Articles