-
Notifications
You must be signed in to change notification settings - Fork 2k
Reproducing result: WMT German-English bleu score is less than the half of the expected score #341
Comments
The same here. My setup: python3.5 + tf1.8 |
I am also having similar issue. I am translating English to German ( newstest2015.tok.bpe.32000.en ) using "Ours — NMT + GNMT attention (8 layers)" model. The cited Bleu score : 27.6. But I got 21.0 TF : 1.8 , Python 2.7 . Anyone please let me know if I am doing anything not proper !! Thanks in Advance :) Hyper-Param File wmt16_gnmt_8_layer.json contains : { |
I know it's been a while since you posted but it seems that when I run the download to get the wmt16 data I'm getting a different output from the BPE processing, resulting in a different vocabulary. I was hoping someone might be able to provide me with their working vocab, inference files etc for English-German |
Thanks for sharing this great work!
Although, I strictly tried to follow the instructions in the ReadMe, I am unable the reproduce the WMT German-English benchmark results on
newstest2015
.Here are my details:
nmt/scripts/wmt16_en_de.sh
to download and pre-process the data files.nmt/standard_hparams/wmt16.json
by adding two lines"num_encoder_layers": 4, "num_decoder_layers": 4,
in order to avoid the problem described in Error loading pretrained model #264, and Update WMT16 standard hparams #265.I got the following inference results for
newstest_2015
:python -m nmt.nmt --src=de --tgt=en --ckpt=deen_model_1/translate.ckpt --hparams_path=nmt/standard_hparams/wmt16.json --out_dir=deen_model_1_output --vocab_prefix=wmt16/vocab.bpe.32000 --inference_input_file=wmt16/newstest2015.tok.bpe.32000.de --inference_output_file=deen_model_1_output/output_infer --inference_ref_file=wmt16/newstest2015.tok.bpe.32000.en
)python -m nmt.nmt --src=de --tgt=en --ckpt=deen_model_2/translate.ckpt --hparams_path=nmt/standard_hparams/wmt16.json --out_dir=deen_model_2_output --vocab_prefix=wmt16/vocab.bpe.32000 --inference_input_file=wmt16/newstest2015.tok.bpe.32000.de --inference_output_file=deen_model_2_output/output_infer --inference_ref_file=wmt16/newstest2015.tok.bpe.32000.en
)Could you please provide any hint or help what am I doing wrong?
Thank you!
The text was updated successfully, but these errors were encountered: