Skip to content

Instantly share code, notes, and snippets.

@prabhjotSL
Forked from bittlingmayer/download.sh
Created August 1, 2017 15:47
Show Gist options
  • Save prabhjotSL/d60cd34bce635ba7125d23b9bb492e2e to your computer and use it in GitHub Desktop.
Save prabhjotSL/d60cd34bce635ba7125d23b9bb492e2e to your computer and use it in GitHub Desktop.
Download fastText pre-trained models for many languages
# See https://github.com/facebookresearch/fastText/blob/master/pretrained-vectors.md
for (( i=1; i<=$#; i++ )); do
wget -c "https://s3-us-west-1.amazonaws.com/fasttext-vectors/wiki.${!i}.zip"
done
# For example:
# ./download.sh bg el ka hy ru fa es fr de it pt ar tr pl ko
# If stopped it will not re-start automatically, but if re-started it will continue from where it stopped.
# Tested on macOS Sierra only.
# Remember to check if there is enough disk space - they are about 4GB each.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment