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>2018-02-22 16:06:24 +0300
committerRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2018-02-22 16:06:24 +0300
commit2b26556a47d98f2e3689acd869db691777b6f966 (patch)
treef11450db80c95060cdc6fe14c81f8d74bff024cd
parente938c81b6e36c6209d97ea847959e622050570f1 (diff)
Fix data paths
-rw-r--r--tests/training/restore-corpus/test_sqlite_restoration.sh6
-rw-r--r--tests/training/restore-corpus/test_sqlite_restoration_maxi_batch.sh6
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/training/restore-corpus/test_sqlite_restoration.sh b/tests/training/restore-corpus/test_sqlite_restoration.sh
index 276e043..996cf69 100644
--- a/tests/training/restore-corpus/test_sqlite_restoration.sh
+++ b/tests/training/restore-corpus/test_sqlite_restoration.sh
@@ -13,7 +13,7 @@ test -e vocab.en.yml
extra_opts="--seed 3333 --maxi-batch 1 --maxi-batch-sort none --mini-batch 32 -o sgd --dim-emb 128 --dim-rnn 256 --disp-freq 4 --restore-corpus"
$MRT_MARIAN/build/marian \
- -m sqlite/model_full.npz -t $MART_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
+ -m sqlite/model_full.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
--after-batches 75 --sqlite sqlite/dbfull.sqlite3 $extra_opts \
--log sqlite.log
@@ -23,7 +23,7 @@ test -e sqlite.log
cat sqlite.log | $MRT_TOOLS/strip-timestamps.sh | grep "Ep\. " | sed 's/ : Time.*//' > sqlite.expected
$MRT_MARIAN/build/marian \
- -m sqlite/model.npz -t $MART_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
+ -m sqlite/model.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
--after-batches 50 --sqlite sqlite/db.sqlite3 $extra_opts \
--log sqlite_1.log
@@ -34,7 +34,7 @@ cat sqlite_1.log | $MRT_TOOLS/strip-timestamps.sh | grep "Ep\. " | sed 's/ : Tim
cp sqlite/model.npz.yml sqlite/model.npz.1.yml
$MRT_MARIAN/build/marian \
- -m sqlite/model.npz -t $MART_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
+ -m sqlite/model.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
--after-batches 75 --sqlite sqlite/db.sqlite3 $extra_opts \
--log sqlite_2.log
diff --git a/tests/training/restore-corpus/test_sqlite_restoration_maxi_batch.sh b/tests/training/restore-corpus/test_sqlite_restoration_maxi_batch.sh
index 61fc245..21d254c 100644
--- a/tests/training/restore-corpus/test_sqlite_restoration_maxi_batch.sh
+++ b/tests/training/restore-corpus/test_sqlite_restoration_maxi_batch.sh
@@ -13,7 +13,7 @@ test -e vocab.en.yml
extra_opts="--seed 4444 --maxi-batch 20 --mini-batch 32 -o sgd --dim-emb 128 --dim-rnn 256 --disp-freq 4 --restore-corpus"
$MRT_MARIAN/build/marian \
- -m sqlite_maxi/model_full.npz -t $MART_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
+ -m sqlite_maxi/model_full.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
--after-batches 70 $extra_opts \
--log sqlite_maxi.log
@@ -23,7 +23,7 @@ test -e sqlite_maxi.log
cat sqlite_maxi.log | $MRT_TOOLS/strip-timestamps.sh | grep "Ep\. " | sed 's/ : Time.*//' > sqlite_maxi.expected
$MRT_MARIAN/build/marian \
- -m sqlite_maxi/model.npz -t $MART_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
+ -m sqlite_maxi/model.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
--after-batches 40 $extra_opts \
--log sqlite_maxi_1.log
@@ -34,7 +34,7 @@ cat sqlite_maxi_1.log | $MRT_TOOLS/strip-timestamps.sh | grep "Ep\. " | sed 's/
cp sqlite_maxi/model.npz.yml sqlite_maxi/model.npz.1.yml
$MRT_MARIAN/build/marian \
- -m sqlite_maxi/model.npz -t $MART_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
+ -m sqlite_maxi/model.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.{en,de}.yml \
--after-batches 70 $extra_opts \
--log sqlite_maxi_2.log