Last active
May 22, 2020 19:11
-
-
Save karanpathak/d2bd3a22f0af0bd349cc8e9f668969d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import the Memory class from joblib | |
from joblib import Memory | |
# Create your cache directory | |
cache_dir="<path-to-your-directory>/sample_cache_dir" | |
# Create a memory object | |
mem = Memory(cache_dir) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment