kweonwooj / papers

summary of ML papers I've read
319 stars 34 forks source link

Guiding Neural Machine Translation with Retrieved Translation Pieces #104

Open kweonwooj opened 6 years ago

kweonwooj commented 6 years ago

Abstract

Details

Guiding NMT with Translation Pieces

screen shot 2018-04-17 at 6 39 12 pm

  1. use Lucene search engine to retrieve M source sentences that have n-gram similarity
  2. among all n-grams in retrieved target sentences, collect translation pieces and score them according to the similarity between input sentence and retrieved source sentence: screen shot 2018-04-17 at 6 25 51 pm
  3. in beam search decoding process, translation pieces are given rewards screen shot 2018-04-17 at 6 31 24 pm screen shot 2018-04-17 at 6 31 32 pm
  4. reward process is implemented efficiently such that it does not traverse over all target vocabilary V, but only traverse target words that belong to translation pieces screen shot 2018-04-17 at 6 31 59 pm

Experiments

Ablation Experiments

Personal Thoughts

Link : https://arxiv.org/pdf/1804.02559v1.pdf Authors : Zhang et al. 2018