Adversarial Training for Community Question Answer Selection Based on Multi-scale Matching (Xiao Yang et al. 2018)
Summary Main topic of this research is CQA Selection which aims at automatically retrieving archived answers that are relevant to a newly submitted question. Previous works on this task explicitly model the correlations between text fragments in questions and answers, predicting the relevance score for each candidate answer to a question, and put them in the binary classifier (relevant/irrelevant). After that, they re-rank these answers to find the most appropriate one. 1. Novel contribution 1) Multi-scale matching model While there are only word-to-word correlations in prior works, the proposed model inspects the correlation between words and ngrams (word-to-ngrams) of different levels of granularity. This allows the proposed model to capture rich context, therefore can better differentiate good answers from bad ones. The proposed model employs a deep convolutional neural network (CNN) to learn a hierarchical representation for each sentence. 2) Adversarial training framework ...