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:
Diffstat (limited to 'examples/training/README.md')
-rw-r--r--examples/training/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/training/README.md b/examples/training/README.md
index 7c321128..fd5e8fd0 100644
--- a/examples/training/README.md
+++ b/examples/training/README.md
@@ -55,8 +55,8 @@ 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 ','`
+./mosesdecoder/scripts/generic/multi-bleu.perl $ref < $dev.output.postprocessed \
+| cut -f 3 -d ' ' | cut -f 1 -d ','
echo $BLEU
```