shane-kercheval / oo-learning

Python machine learning library based on Object Oriented design principles; the goal is to allow users to quickly explore data and search for top machine learning algorithm candidates for a given dataset
MIT License
1 stars 0 forks source link

Parallel Processing #2

Closed shane-kercheval closed 6 years ago

shane-kercheval commented 6 years ago

I imagine there are significant opportunities to speed up code via parallelization.

http://sebastianraschka.com/Articles/2014_multiprocessing.html http://www.paulbrownmagic.com/blog/python_functional_iteration/

Note: some of the above may be solved through others (e.g. ModelSearcher via Tuner)

shane-kercheval commented 6 years ago

it seems my implementation is not true parallel processing, despite the apparent gain i was seeing (false positive)

https://stackoverflow.com/questions/26432411/multiprocessing-dummy-in-python-is-not-utilising-100-cpu

shane-kercheval commented 6 years ago

Not implementing for ModelStacker, perhaps at a later date