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>2017-09-27 18:17:02 +0300
committerRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2017-09-27 18:17:02 +0300
commit98daacd8dc3fdf74ff90bc4e7638a00acab66996 (patch)
tree6394daab43fcf66aa617ad01a20a33a8cf6b8074
parentfd03240e8c016bba31b39c8aa6a46e47e6908f53 (diff)
Fix 'make models'
-rw-r--r--Makefile4
-rw-r--r--models/download_wmt16.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c90ced5..5d1b736 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ GIT_MARIAN=http://github.com/marian-nmt/marian.git
GIT_MOSES_SCRIPTS=http://github.com/marian-nmt/moses-scripts.git
GIT_SUBWORD_NMT=http://github.com/rsennrich/subword-nmt.git
-.PHONY: tools/marian-dev tools/marian install
+.PHONY: tools/marian-dev tools/marian install models
.SECONDARY:
@@ -23,4 +23,4 @@ tools/marian:
models:
mkdir -p $@
- cd $@ && bash download_wmt16.sh
+ cd $@ && bash ./download_wmt16.sh
diff --git a/models/download_wmt16.sh b/models/download_wmt16.sh
index f86d982..dc705cc 100644
--- a/models/download_wmt16.sh
+++ b/models/download_wmt16.sh
@@ -16,6 +16,6 @@ MODEL_FILES=(
mkdir -p wmt16.$SRC-$TRG
for model_file in ${MODEL_FILES[@]}; do
- echo $model_file
- wget -q --no-clobber --directory-prefix wmt16.$SRC-$TRG --show-progress $model_file
+ echo $model_file
+ wget -q --no-clobber --directory-prefix wmt16.$SRC-$TRG --show-progress $model_file
done