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-26 23:06:14 +0300
committerRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2017-09-26 23:06:14 +0300
commit2855410054841c147bf5d7f014fc94891a38a9b3 (patch)
treecfbe6a818738cffd1812a4ba9239fd9d4aa1b57f /Makefile
parent22b180e172002002bf1abd5bcbb3b77b3b4e59e0 (diff)
Add basic test for translation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4352405..bbd423e 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ THREADS=16
GIT_MARIAN=http://github.com/marian-nmt/marian-dev.git
GIT_MOSES_SCRIPTS=http://github.com/marian-nmt/moses-scripts.git
+GIT_SUBWORD_NMT=http://github.com/rsennrich/subword-nmt.git
URL_MODELS=
@@ -10,10 +11,16 @@ URL_MODELS=
.SECONDARY:
-install: marian/build/marian
+install: marian/build/marian tools
-download:
- test $(URL_MODELS) && wget -q --show-progress $(URL_MODELS)
+tools:
+ mkdir -p $@
+ cd $@ && git clone $(GIT_MOSES_SCRIPTS)
+ cd $@ && git clone $(GIT_SUBWORD_NMT)
+
+models:
+ mkdir -p $@
+ cd $@ && bash download_wmt16.sh
#####################################################################