some research trends in
play

(Some) Research Trends in Question Answering (Q (QA) Advanced - PowerPoint PPT Presentation

(Some) Research Trends in Question Answering (Q (QA) Advanced Topics in AI (Spring 2017) IIT Delhi Manoj Kumar Chinnakotla Senior Applied Scientist Artificial Intelligence and Research (AI&R) Microsoft, India Lecture Obje jective and


  1. (Some) Research Trends in Question Answering (Q (QA) Advanced Topics in AI (Spring 2017) IIT Delhi Manoj Kumar Chinnakotla Senior Applied Scientist Artificial Intelligence and Research (AI&R) Microsoft, India

  2. Lecture Obje jective and Outline • To cover some interesting trends in QA research • Especially in applying deep learning techniques • With minimal manual intervention and feature design • QA from various different sources • Unstructured Text  Web, Free Text, Entities • Knowledge Bases  Freebase, REVERB, DBPedia • Community Forums  Stack overflow, Yahoo! Answers etc. • Will be covering three different and recent papers in each of the above stream

  3. A Neural Network for Factoid QA over Paragraphs Mohit Iyyer, Jordan Boyd-Graber, Leonardo Claudino, Richard Socher (EMNLP 2014)

  4. Factoid QA • Given a description of an entity, identify the • Person Holy Roman Empire • Place • Thing • Quiz Bowl • Quiz competition for high-school and college level students • Need to guess entities based on a question given in raw text • Each question has 4-6 sentences • Each sentence has unique clues about target entity • Players can answer any time – earlier the answer, more points scored • Questions follow “ pyramidality ” – earlier clues are harder

  5. How do they solve it? • Dependency Tree RNN (DT-RNN) • Trans-sentential Averaging • Resultant Model named as QANTA • Question Answering Neural Network with Trans-Sentential Averaging (QANTA)

  6. Example Model Construction

  7. Training

  8. Dataset • 100,000 Quiz Bowl Question/Answer pairs from 1998-2013 • From the above, only Literature and History questions – 40% • History – 21,041 • Literature – 22, 956 • Answer Based Filtering • 65.6% of answers only occur once or twice and are eliminated • All answers which do not occur at least 6 times are eliminated • Final number of unique questions • History: 451 • Literature: 595 • Total Dataset • History: 4,460 • Literature: 5,685

  9. Experimental Setup Train Test History Questions: 3,761 Questions: 699 Sentences: 14,217 Sentences: 2,768 Literature Questions: 4,777 Questions: 908 Sentences: 17,972 Sentences: 3,577 Baselines • Bag of Words (BOW) • Bag of Words with DT based features (BOW-DT) • IR-QB: Maps questions to answers using Whoosh – a state-of-the-art IR engine • IR-Wiki: Maps questions to answers using Whoosh where answers also have their wiki text

  10. Results

  11. Positive Examples

  12. Negative Examples

  13. Nice Things about the Paper • Their use of dependency trees instead of bag of words or a mere sequence of words was nice. They tried to use sophisticated linguistic information in their model. • Joint learning of answer and question representations in the same vector " most answers are themselves words (features) in other questions (e.g., a question on World War II might mention the Battle of the Bulge and vice versa). Thus, word vectors associated with such answers can be trained in the same vector space as question text enabling us to model relationships between answers instead of assuming incorrectly that all answers are independent .“ • Nice Error Analysis in Sections 5.2 and 5.3 • Tried some obvious extensions and provided reasoning for not working " We tried transforming Wikipedia sentences into quiz bowl sentences by replacing answer mentions with appropriate descriptors (e.g., \Joseph Heller" with \this author"), but the resulting sentences suffered from a variety of grammatical issues and did not help the final result ."

  14. Shortcomings • RNNs need multiple redundant training examples for learning powerful meaning representations. In real world, how will we get those? • In some sense, they had lots of data about each question which can be used to learn such rich representations. This is an unrealistic assumption. • They whittled down their training and test data to a small set of QA pairs that *fit* their needs (no messy data) " 451 history answers and 595 literature answers that occur on average twelve times in the corpus ".

  15. Open Question Answering with Weakly Supervised Embedding Models Bordes A, Weston J and Usunier N (ECML PKDD 2014)

  16. Task Defi finition Scoring function over all KB triples

  17. Training Data • REVERB • 14M Triples • 2M Entities • 600K Relationships • Extracted from ClueWeb09 Corpus • Contains lots of noise • For instance, the following are three different entities:

  18. Automatic Training Data Generation • Generate Question-Triple pairs automatically using the following 16 rules • For each triple, generate these 16 questions • Some exceptions: Only *-in.r relation can generate “where did e r?” pattern question • Syntactic structure is simple • Some of them may not be semantically valid • Approximate size of Question- Triple pairs: 16 X 14M

  19. Essence of f the Technique • Project both question (bag of words or n-grams) and KB triple into a shared embedding space • Compute the similarity score in the shared embedding space and rank triples based on it

  20. Training Data • Positive Training Samples • All questions generated from triples using rules • Negative Samples • For each original triple (q, t), randomly select a triple from KB • Replace each field of original triple t with t tmp with probability of 0.66 • This way, it is possible to create negative samples which are close enough to the original triples • Pose it as a ranking problem • Ranking Loss: • Constraints:

  21. Training Algorithm • Stochastic Gradient Descent (SGD) 1 1. Randomly initialize W and V (mean 0, std. dev. 𝑙 ) 2. Sample a positive training pair (q i ,t i ) from D 1 such that t i 1 ≠ t i 3. Create a corrupted triple t i 4. Use ranking loss and compute SGD update 5. Enfore W and V are normalized at each step • Learning rate adapted using ADA-GRAD

  22. Capturing Question Variations using WIKIANSWERS • 2.5 M distinct questions • 18 M distinct paraphrase pairs

  23. Mult ltitask Learning wit ith Paraphrases 250M Examples 3.5M Entities 800K Vocabulary (Rules + Paraphrases) (2 embeddings per entity) 1 q p t i t i q V V W W 64 dimensions 64 dimensions 64 dimensions 64 dimensions Ranking Loss Ranking Loss

  24. Fine-Tuning of f Similarity Function • The earlier model usually doesn’t converge to global optimum and many correct answers still not ranked at the top • For further improvement, introduce one more weighting factor into the query-triple similarity metric • After fixing W and V, M could be learnt using

  25. Evaluation Results • Test Set • 37 questions from WikiANSWERS which has at least one answer in REVERB • Additional paraphrase questions – 691 questions • Run various versions of PARALEX to get candidate triples and get them human-judged • Total: 48K triples labeled

  26. Candidate Generation using String Matching • Construct a set of candidate strings containing • Do POS Tagging of the question • Get the following candidate strings • All noun phrases that appear less than 1000 times in REVERB • All proper nouns if any • Augment these strings with their singular form removing trailing “s” if any • Only consider triples which contain at least one of the above candidate strings in them • Significantly reduces the number of candidates processed – 10K (on avg.) vs. 14M

  27. Sample Embeddings

  28. Nice things about the paper • Doesn’t use any manual annotation and no prior information from any other dataset • Works on a highly noisy Knowledge Based (KB) – REVERB • Doesn’t assume the existence of “word alignment” tool for learning the term equivalences • In fact, it automatically learns these term equivalences • Use of multi-task learning to combine learnings from paraphrases as well as Q, A pairs was interesting • Achieves impressive results with minimal assumptions from training or other resources

  29. Shortcomings • Many adhoc decisions across the paper • Bag of words for modeling a question is very crude • “what are cats afraid of?” vs. “what are afraid of cats?” • Perhaps, a DT-RNN or semantic role based RNN is much better • String matching based candidate generation was a major contributor in boosting the accuracy which was introduced towards the end as a rescue step! • The fine-tuning step was introduced to improve the poor performance of the initial model • Overall, more value seems to be coming from such hacks and tricks in stead of the original idea itself!

  30. Potential Ext xtensions • Try out DT-RNN and variants for modeling the question • Similarly, try word2vec/GLoVE entity embeddings for entity and object and model the predicate using a simple RNN • Is it possible to model this problem using the sequence-to-sequence framework? • Question -> Entity, Predicate, Object

  31. Hand in Glove: Deep Feature Fusion Network Architectures for Answer Quality Prediction Sai Praneeth, Goutham, Manoj Chinnakotla, Manish Shrivastava (SIGIR 2016, COLING 2016)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend