作者:杨夕
NLP论文学习笔记:https://github.com/km1994/nlp_paper_study
个人介绍:大佬们好,我叫杨夕,该项目主要是本人在研读顶会论文和复现经典论文过程中,所见、所思、所想、所闻,可能存在一些理解错误,希望大佬们多多指正。
NLP 百面百搭 地址:https://github.com/km1994/NLP-Interview-Notes
推荐系统 百面百搭 地址:https://github.com/km1994/RES-Interview-Notes
关注公众号 【关于NLP那些你不知道的事】 加入 【NLP && 推荐学习群】一起学习!!!
注:github 网页版 看起来不舒服,可以看 手机版NLP论文学习笔记
作为文本生成中的重要子任务,问题生成(Question Generation) 旨在根据输入文本数据生成与输入相关且自然流畅的问题。
- 基于规则和模板的问题生成方法:
- 介绍:该方法主要 根据专家知识人工设计的规则和模版将陈述句转换为疑问句
- 存在问题:需要消耗大量人力且依赖于深层的语法知识,泛化性能和可扩展能力较差
- 基于深度学习的问题生成方法:
- Learning to Ask: Neural Question Generation for Reading Comprehension (ACL 2017)将端到端训练的神经网络应用于问题生成,采用 seq2seq+attention 模型架构,摆脱了转换规则与模版的局限,取得了相比于传统方法更好的性能;
- Neural question generation from text: A preliminary study(EMNLP 2017):将神经网络应用于 QG ,在编码时额外考虑了答案位置与语法信息,取得了更好的性能。
- 介绍:将答案作为输入来指导模型生成问题时更关注答案以提升模型性能,常用方法包括将答案位置作为输入特征或使用额外的编码器对答案编码。
- 代表论文:
- Answer-focused and Position-aware Neural Question Generation.EMNLP, 2018
- Improving Neural Question Generation Using Answer Separation.AAAI, 2019.
- Answer-driven Deep Question Generation based on Reinforcement Learning.COLING, 2020.
- 介绍:将额外的语言特征与词向量拼接作为输入来提升 QG,例如 word case、POS 和 NER 标签等。
- 代表论文:
- Automatic Question Generation using Relative Pronouns and Adverbs.ACL, 2018.
- Learning to Generate Questions by Learning What not to Generate.WWW, 2019.
- 介绍:通过对问题类型或疑问词的显式建模来改善生成问题疑问词预测不准确的问题。
- 代表论文:
- Question Generation for Question Answering.EMNLP,2017.
- Answer-focused and Position-aware Neural Question Generation.EMNLP, 2018.
- Question-type Driven Question Generation.EMNLP, 2019.
- 介绍:利用输入文本周围的相关上下文增加输入信息来提升问题生成效果。
- 代表论文:
- Harvesting paragraph-level question-answer pairs from wikipedia.ACL, 2018.
- Leveraging Context Information for Natural Question Generation.ACL, 2018.
- Paragraph-level Neural Question Generation with Maxout Pointer and Gated Self-attention Networks.EMNLP, 2018.
- Capturing Greater Context for Question Generation.AAAI, 2020.
- 方式一:当答案信息不提供给模型时,给定输入段落,QG 系统需自动识别段落中值得提问的部分再生成问题。
- 代表论文:
- Identifying Where to Focus in Reading Comprehension for Neural Question Generation.EMNLP, 2017.
- Neural Models for Key Phrase Extraction and Question Generation.ACL Workshop, 2018.
- A Multi-Agent Communication Framework for Question-Worthy Phrase Extraction and Question Generation.AAAI, 2019.
- 方式二:答案已知时,识别与答案相关的内容也有利于提升生成问题的效果。
- 代表论文:
- Improving Question Generation With to the Point Context.EMNLP, 2019.