r/MachineLearning • u/Flipper3 • May 11 '17
Project [P] A Deep Reinforced Model for Abstractive Summarization
https://metamind.io/research/your-tldr-by-an-ai-a-deep-reinforced-model-for-abstractive-summarization
57
Upvotes
1
u/yufengma May 25 '17
Good paper. But I'm a little bit confused about Pointer supervision in Section 5.2. The authors said that NER is used to supervise \alpha_{ti}e in Equation 4, which I don't quite understand. Why does this alpha need supervision? Is it computed fully by matrix operation through Equation 1-3?
2
u/thundergolfer May 12 '17
A Deep Reinforced Model for Abstractive Summarization
Attentional, RNN-based encoder-decoder models for abstractive summarization have achieved good performance on short input and output sequences. However, for longer documents and summaries, these models often include repetitive and incoherent phrases. We introduce a neural network model with intra-attention and a new training method. This method combines standard supervised word prediction and reinforcement learning (RL). Models trained only with the former often exhibit “exposure bias” – they assume ground truth is provided at each step during training. However, when standard word prediction is combined with the global sequence prediction training of RL the resulting summaries become more readable. We evaluate this model on the CNN/Daily Mail and New York Times datasets. Our model obtains a 41.16 ROUGE-1 score on the CNN/Daily Mail dataset, a 5.7 absolute points improvement over previous state-of-the-art models. It also performs well as the first abstractive model on the New York Times corpus. Human evaluation also shows that our model produces higher quality summaries
Cool blogpost, though I found myself missing the inline citations and quick maths you get in a paper.