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/decoder/align/run_amun_align.sh')
-rw-r--r--tests/decoder/align/run_amun_align.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/decoder/align/run_amun_align.sh b/tests/decoder/align/run_amun_align.sh
new file mode 100644
index 0000000..0b158b8
--- /dev/null
+++ b/tests/decoder/align/run_amun_align.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+# Exit on error
+set -e
+
+# Check if amun is compiled
+test -e $MRT_MARIAN/build/amun || exit $EXIT_CODE_SKIP
+
+# Test code goes here
+$MRT_MARIAN/build/amun -c $MRT_MODELS/wmt16_systems/amun.en-de.yml --return-alignment -b 1 < text.in > amun.align.out
+#cat amun.align.out | sed 's/ ||| /\t/' | cut -f1 > amun.out
+#diff amun.align.out amun.align.expected > amun.align.diff
+
+# Exit with success code
+exit 0