├── .gitattributes ├── .gitignore ├── README.md ├── blog ├── baseline.png ├── beam_analysis.png ├── in-domain.gif ├── out-of-domain.gif └── results.png └── scripts ├── de-en ├── train_MLE.sh └── train_MRT.sh └── de-rm ├── train_MLE.sh └── train_MRT.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build 3 | dist 4 | nmt.egg-info 5 | .idea 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/README.md -------------------------------------------------------------------------------- /blog/baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/blog/baseline.png -------------------------------------------------------------------------------- /blog/beam_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/blog/beam_analysis.png -------------------------------------------------------------------------------- /blog/in-domain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/blog/in-domain.gif -------------------------------------------------------------------------------- /blog/out-of-domain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/blog/out-of-domain.gif -------------------------------------------------------------------------------- /blog/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/blog/results.png -------------------------------------------------------------------------------- /scripts/de-en/train_MLE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/scripts/de-en/train_MLE.sh -------------------------------------------------------------------------------- /scripts/de-en/train_MRT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/scripts/de-en/train_MRT.sh -------------------------------------------------------------------------------- /scripts/de-rm/train_MLE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/scripts/de-rm/train_MLE.sh -------------------------------------------------------------------------------- /scripts/de-rm/train_MRT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaojun-wang/Exposure-Bias-Hallucination-Domain-Shift/HEAD/scripts/de-rm/train_MRT.sh --------------------------------------------------------------------------------