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

test_wmt17_model.sh « nematus « models « training « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d43ff9cddb0978f57fe61727f0455b2ee37e20d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

# Exit on error
set -e

# Test code goes here
mkdir -p wmt17
rm -f wmt17/* wmt17.log

$MRT_MARIAN/marian \
    --type nematus --enc-cell gru-nematus --dec-cell gru-nematus \
    --enc-depth 1 --enc-cell-depth 4 --enc-type bidirectional --dec-depth 1 --dec-cell-base-depth 8 --dec-cell-high-depth 1 \
    --layer-normalization \
    --no-shuffle --seed 1111 --dim-emb 64 --dim-rnn 128 --cost-type ce-mean \
    -m wmt17/model.npz -t $MRT_DATA/europarl.de-en/corpus.bpe.{de,en} -v vocab.en.yml vocab.de.yml \
    --log wmt17.log --disp-freq 2 --after-batches 10

test -e wmt17/model.npz
test -e wmt17/model.npz.yml

cat wmt17.log | $MRT_TOOLS/extract-costs.sh > wmt17.out
$MRT_TOOLS/diff-nums.py wmt17.out wmt17.expected -p 2 -o wmt17.diff

# Exit with success code
exit 0