Skip to content

Commit 842e623

Browse files
authored
Merge pull request amueller#165 from koyachi/fix/joblib-memory-interface
fix Memory parametr to location from cachedir
2 parents fe5ec9a + 1228510 commit 842e623

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mglearn/plot_nmf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from joblib import Memory
66

7-
memory = Memory(cachedir="cache")
7+
memory = Memory(location="cache")
88

99

1010
def plot_nmf_illustration():

mglearn/plot_pca.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from joblib import Memory
66

7-
memory = Memory(cachedir="cache")
7+
memory = Memory(location="cache")
88

99

1010
def plot_pca_illustration():

0 commit comments

Comments
 (0)