Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2019-03-07 15:29:53 +0300
committerRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2019-03-07 15:29:53 +0300
commit6f91ca8175a0098936e825ceb2c5a3496a7cc9a9 (patch)
tree2bd0562d1a92011a42da8d9f653b1124dfc32cb2
parentf9d1f2c9ae7cebb5acd849b635f10d3221783f99 (diff)
Add -nv to wget command
-rw-r--r--models/download-lm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/download-lm.sh b/models/download-lm.sh
index ac7a429..1ec8f78 100644
--- a/models/download-lm.sh
+++ b/models/download-lm.sh
@@ -4,7 +4,7 @@ test -e lmgec/lm.npz && exit
mkdir -p lmgec
cd lmgec
-wget -nc http://data.statmt.org/romang/gec-naacl18/models.tgz
+wget -nv -nc http://data.statmt.org/romang/gec-naacl18/models.tgz
tar zxvf models.tgz lm.npz tc.model gec.bpe vocab.yml
rm models.tgz
cd ..