Python + joblib: Make your computer work harder, and save yourself time
The joblib
package
(pip install joblib
) provides helpers for easy parallelization and
caching (memoization) of function outputs.
Rachel presented examples of joblib
’s Parallel helper. Her notebook is at
https://github.com/rsmullen/CodeCoffee/blob/master/CodeCoffee_joblib.ipynb
Joseph presented the principles behind and use of the joblib
Memory helper for caching. His notebook is at