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

test_quantmodel.sh « quantized-model « features « training « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9bf6a34700bcb1cdae12d5197f698d0a4a490d9c (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
#!/bin/bash -x

#####################################################################
# SUMMARY: Train a quantized marian model
# AUTHOR: afaji
#####################################################################

# Exit on error
set -e

PREFIX=quantized

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

# Train an 8-bits model 
$MRT_MARIAN/marian \
    --no-shuffle --seed 1111 --dim-emb 32 --dim-rnn 64 --mini-batch 32 --maxi-batch 1 --maxi-batch-sort none --learn-rate 0.1 --optimizer sgd \
    -m $PREFIX/model.npz -t $MRT_DATA/europarl.de-en/corpus.bpe.{en,de} -v train/vocab.en.yml train/vocab.de.yml \
    --cost-type cross-entropy --sync-sgd --after-batches 100 --disp-freq 10 --quantize-bits 8 \
    --log $PREFIX.log

# Check if files exist
test -e $PREFIX/model.npz
test -e $PREFIX.log

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

# make sure that the resulting model has no more than 256 different values (i.e. quantized)
$MRT_TOOLS/check-model-unique-vals.py $PREFIX/model.npz -b 8

# Exit with success code
exit 0