miss_minutes

miss_minutes t1_j2bph94 wrote

https://stackoverflow.com/a/41568439

https://scikit-learn.org/stable/faq.html#will-you-add-gpu-support

Scikit learn isn't meant to be used with the GPU. Machine learning that's not deep learning don't benefit as much from GPU compute. Sklearn also uses optimised native libraries when possible (e.g. libsvm and liblinear), so if you were to implement the sklearn API on top of pytorch, it's very unlikely you'll beat the performance of sklearn.

58