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

test_sqlite_restoration.sh « corpus « restoring « training « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7197de822f22bef2073d3b77574054fa13b511a9 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash -x

# Exit on error
set -e

# Test code goes here
rm -rf sqlite sqlite*.log
mkdir -p sqlite

test -e vocab.de.yml
test -e vocab.en.yml

extra_opts="--seed 3333 --maxi-batch 1 --maxi-batch-sort none --mini-batch 32 --optimizer sgd --dim-emb 128 --dim-rnn 256 --disp-freq 4"
# Added because default options has changes
extra_opts="$extra_opts --cost-type ce-mean --disp-label-counts false"

$MRT_MARIAN/marian \
    -m sqlite/model_full.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.en.yml vocab.de.yml \
    --after-batches 75 --sqlite sqlite/dbfull.sqlite3 $extra_opts \
    --log sqlite.log

test -e sqlite/model_full.npz
test -e sqlite.log

cat sqlite.log | $MRT_TOOLS/strip-timestamps.sh | grep "Ep\. " | sed 's/ : Time.*//' > sqlite.expected

$MRT_MARIAN/marian \
    -m sqlite/model.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.en.yml vocab.de.yml \
    --after-batches 50 --sqlite sqlite/db.sqlite3 $extra_opts \
    --log sqlite_1.log

test -e sqlite/model.npz
test -e sqlite_1.log

cat sqlite_1.log | $MRT_TOOLS/strip-timestamps.sh | grep "Ep\. " | sed 's/ : Time.*//' > sqlite_1.out
cp sqlite/model.npz.yml sqlite/model.npz.1.yml

$MRT_MARIAN/marian \
    -m sqlite/model.npz -t $MRT_DATA/train.max50.{en,de} -v vocab.en.yml vocab.de.yml \
    --after-batches 75 --sqlite sqlite/db.sqlite3 $extra_opts \
    --log sqlite_2.log

test -e sqlite/model.npz
test -e sqlite_2.log

cat sqlite_2.log | $MRT_TOOLS/strip-timestamps.sh | grep "Ep\. " | sed 's/ : Time.*//' > sqlite_2.out
cat sqlite_1.out sqlite_2.out > sqlite.out

$MRT_TOOLS/diff-nums.py sqlite.out sqlite.expected -p 0.1 -o sqlite.diff

# Exit with success code
exit 0