Created
October 21, 2014 22:04
-
-
Save elliottcordo/21d76e54e111ffd686dc to your computer and use it in GitHub Desktop.
wget movie lense
This file contains 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
# download MovieLens data | |
wget --output-document=data/ml-100k.zip http://www.grouplens.org/system/files/ml-100k.zip | |
wget --output-document=data/ml-1m.zip http://www.grouplens.org/system/files/ml-1m.zip | |
wget --output-document=data/ml-10m.zip http://files.grouplens.org/papers/ml-10m.zip | |
cd data | |
# unzip data | |
unzip ml-100k.zip | |
unzip ml-1m.zip | |
unzip ml-10m.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment