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

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Junczys-Dowmunt <junczys@amu.edu.pl>2017-03-24 22:48:22 +0300
committerMarcin Junczys-Dowmunt <junczys@amu.edu.pl>2017-03-24 22:48:22 +0300
commite20587b6b507525168f6b267ee5c78caad67f6b4 (patch)
tree53bc957ac16b0794b299281c5d74702881fe942d /examples/training/README.md
parent73596bb556254dc44ed3747068bca9f6f1854f5f (diff)
parentf1008acbcf4df251ef746c0d3eed67ba74ff5c2b (diff)
Merge branch 'marian-integration' of https://github.com/amunmt/amunmt into marian-integration
Diffstat (limited to 'examples/training/README.md')
-rw-r--r--examples/training/README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/training/README.md b/examples/training/README.md
index 7c321128..078a2ceb 100644
--- a/examples/training/README.md
+++ b/examples/training/README.md
@@ -55,8 +55,6 @@ cat $dev | ../../build/amun -c $prefix.dev.npz.amun.yml --mini-batch 10 --maxi-b
| sed 's/\@\@ //g' | mosesdecoder/scripts/recaser/detruecase.perl > $dev.output.postprocessed
## get BLEU
-BLEU=`./mosesdecoder/scripts/generic/multi-bleu.perl $ref < $dev.output.postprocessed \
-| cut -f 3 -d ' ' | cut -f 1 -d ','`
-
-echo $BLEU
+./mosesdecoder/scripts/generic/multi-bleu.perl $ref < $dev.output.postprocessed \
+| cut -f 3 -d ' ' | cut -f 1 -d ','
```