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

test_tsv_train_create_vocabs.sh « input-tsv « interface « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f16390001c74602603a7088b73e25a5309c65a3e (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
#!/bin/bash -x

#####################################################################
# SUMMARY: Train a model from TSV input and create vocabularies
# TAGS: sentencepiece tsv train
#####################################################################

# Exit on error
set -e

# Remove old artifacts and create working directory
rm -rf train_vocabs train_vocabs.*{log,out,diff}
mkdir -p train_vocabs

# Run marian command
$MRT_MARIAN/marian \
    --no-shuffle --seed 1111 --dim-emb 32 --dim-rnn 64 --maxi-batch 1 --maxi-batch-sort none --optimizer sgd \
    -m train_vocabs/model.npz --tsv -t train.tsv -v train_vocabs/vocab.de.spm train_vocabs/vocab.en.spm --dim-vocabs 2000 2000 -T train_vocabs \
    --after-batches 20 --disp-freq 2 \
    --log train_vocabs.log

# Check if files exist
test -e train_vocabs/model.npz
test -e train_vocabs/vocab.de.spm
test -e train_vocabs/vocab.en.spm
test -e train_vocabs.log

# Compare the current output with the expected output
cat train_vocabs.log | $MRT_TOOLS/extract-costs.sh > train_vocabs.out
$MRT_TOOLS/diff-nums.py train_vocabs.out train_vocabs.expected -p 0.1 -o train_vocabs.diff

# Compare vocabularies
# WARNING: This seems not deterministic across compilations
#$MRT_MARIAN/spm_export_vocab -model train_vocabs/vocab.de.spm > train_vocabs.de.spm.out
#$MRT_MARIAN/spm_export_vocab -model train_vocabs/vocab.en.spm > train_vocabs.en.spm.out

#$MRT_TOOLS/diff-nums.py train_vocabs.de.spm.out train_vocabs.de.spm.expected -p 0.01 -o train_vocabs.de.spm.diff
#$MRT_TOOLS/diff-nums.py train_vocabs.en.spm.out train_vocabs.en.spm.expected -p 0.01 -o train_vocabs.en.spm.diff

# Exit with success code
exit 0