Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_ende.sh « wmt17 « decoder « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 902b16effb62f1ea2e23d33e7bdfc0ff24d5dd34 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Exit on error
set -e

# Test code goes here
$MRT_MARIAN/build/marian-decoder -c $MRT_MODELS/wmt17_systems/marian.en-de.yml < text.in | tail -n 99 > text.out
$MRT_TOOLS/diff.sh text.out text.expected > text.diff

# Exit with success code
exit 0