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/restoring/corpus/test_corpus_restoration_no_shuffle.sh')
-rw-r--r--tests/training/restoring/corpus/test_corpus_restoration_no_shuffle.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/training/restoring/corpus/test_corpus_restoration_no_shuffle.sh b/tests/training/restoring/corpus/test_corpus_restoration_no_shuffle.sh
index 63105e4..d147702 100644
--- a/tests/training/restoring/corpus/test_corpus_restoration_no_shuffle.sh
+++ b/tests/training/restoring/corpus/test_corpus_restoration_no_shuffle.sh
@@ -1,5 +1,10 @@
#!/bin/bash -x
+#####################################################################
+# SUMMARY:
+# TAGS: mini-batch-fit
+#####################################################################
+
# Exit on error
set -e
@@ -11,6 +16,8 @@ test -e vocab.de.yml
test -e vocab.en.yml
extra_opts="--seed 1234 --no-shuffle --maxi-batch 8 --maxi-batch-sort src --mini-batch 32 --mini-batch-fit -w 100 --optimizer sgd --dim-emb 128 --dim-rnn 256 --disp-freq 4"
+# Added because default options has changes
+extra_opts="$extra_opts --cost-type ce-mean --disp-label-counts false"
$MRT_MARIAN/marian \
-m corpus_noshuf/model_full.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.en.yml vocab.de.yml \