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:
Diffstat (limited to 'tests/training/basics/test_toy_vocab.sh')
-rw-r--r--tests/training/basics/test_toy_vocab.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/training/basics/test_toy_vocab.sh b/tests/training/basics/test_toy_vocab.sh
index 943dcba..671843f 100644
--- a/tests/training/basics/test_toy_vocab.sh
+++ b/tests/training/basics/test_toy_vocab.sh
@@ -3,6 +3,7 @@
#####################################################################
# SUMMARY: Run a basic training command with toy vocabs
# AUTHOR: snukky
+# TAGS: small-vocab
#####################################################################
# Exit on error
@@ -13,7 +14,7 @@ mkdir -p toy
rm -f toy/* toy.log
$MRT_MARIAN/marian \
- --seed 1111 --dim-emb 256 --dim-rnn 512 \
+ --seed 1111 --dim-emb 256 --dim-rnn 512 --no-shuffle \
-m toy/model.npz -t $MRT_DATA/europarl.de-en/toy.bpe.{de,en} -v toy/vocab.de.yml toy/vocab.en.yml \
--log toy.log --disp-freq 5 -e 5
@@ -24,7 +25,7 @@ test -e toy/model.npz.yml
test -e toy/model.npz.amun.yml
cat toy.log | $MRT_TOOLS/extract-costs.sh > toy.out
-$MRT_TOOLS/diff-nums.py toy.out toy.expected -p 0.9 -o toy.diff
+$MRT_TOOLS/diff-nums.py toy.out toy.expected -p 0.1 -o toy.diff
# Exit with success code
exit 0