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

test_decoding_with_empty_vocab.sh « vocab « interface « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf66cd25cae2e54c274112d3a035a5df70890752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

# Exit on error
set -e

rm -f emptyvoc_decoder.log emptyvoc.yml
echo "this is a test ." > file.in
touch emptyvoc.yml

# Test code goes here
$MRT_MARIAN/build/marian-decoder -m $MRT_MODELS/wmt16_systems/en-de/model.npz \
    --type amun --dim-emb 500 --dim-vocabs 85000 85000 -v emptyvoc.yml emptyvoc.yml \
    -i file.in > emptyvoc_decoder.log 2>&1 || true

test -e emptyvoc_decoder.log
grep -qi "empty vocabulary" emptyvoc_decoder.log

# Exit with success code
exit 0