Skip to content

Instantly share code, notes, and snippets.

@dshaw002
dshaw002 / download.sh
Created July 31, 2017 19:54 — forked from bittlingmayer/download.sh
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.