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

test_align_ensemble_beam_1.sh « align-ensemble « decoder « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3daba8e827d92d869e748dd2341445a83f0c7f99 (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/wmt16_systems/marian.en-de.ensemble.yml --mini-batch 1 -b 1 --alignment < text.in > align.b1.out
diff align.b1.out align.b1.expected > align.b1.diff

# Exit with success code
exit 0