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

test_quantmodel_with_optimization.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: fe7993ee9f66926092b4d75b190578e245354197 (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 with a scale optimization
# AUTHOR: afaji
#####################################################################

# Exit on error
set -e

PREFIX=quantized-opt

# Remove old artifacts and create working directory
rm -rf train $PREFIX.{log,out,diff}
mkdir -p 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 train/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 --quantize-optimization-steps 3 \
    --log $PREFIX.log

# Check if files exist
test -e train/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 train/model.npz -b 8

# Exit with success code
exit 0