From b5cf5cb9bd3024577a4124dfc83ea71589115c0e Mon Sep 17 00:00:00 2001 From: Yancey1989 Date: Wed, 22 Mar 2017 15:39:14 +0800 Subject: [PATCH] update --- .tools/cache_dataset.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.tools/cache_dataset.py b/.tools/cache_dataset.py index 9ad7b92..f1d196e 100755 --- a/.tools/cache_dataset.py +++ b/.tools/cache_dataset.py @@ -24,7 +24,9 @@ dataset.common.download('http://files.grouplens.org/datasets/movielens/ml-1m.zip nltk.download('movie_reviews', download_dir=dataset.common.DATA_HOME) # Cache uci housing -dataset.common.download(dataset.uci_housing.URL, "uci_housing", dataset.uci_housing.MD5) +dataset.common.download(dataset.uci_housing.URL, "uci_housing", \ + dataset.uci_housing.MD5) # Cache vmt14 -dataset.common.download(dataset.vmt14.URL_TRAIN, "wmt14",dataset.vmt14.MD5_TRAIN) +dataset.common.download(dataset.vmt14.URL_TRAIN, "wmt14",\ + dataset.vmt14.MD5_TRAIN) -- GitLab