learning relation entailment with structured and textual
play

Learning Relation Entailment with Structured and Textual Information - PowerPoint PPT Presentation

Learning Relation Entailment with Structured and Textual Information Zhengbao Jiang 1 , Jun Araki 2 , Donghan Yu 1 , Ruohong Zhang 1 , Wei Xu 3 , Yiming Yang 1 , Graham Neubig 1 Carnegie Mellon University 1 , Bosch Research North America 2 , Ohio


  1. Learning Relation Entailment with Structured and Textual Information Zhengbao Jiang 1 , Jun Araki 2 , Donghan Yu 1 , Ruohong Zhang 1 , Wei Xu 3 , Yiming Yang 1 , Graham Neubig 1 Carnegie Mellon University 1 , Bosch Research North America 2 , Ohio State University 3 zhengbaj@cs.cmu.edu 1

  2. Motivation • Relations among entities play a fundamental role in knowledge graphs. 2

  3. Motivation • However, relations are treated as independent. KG embedding: each relation is treated as an atomic unit with separate parameters. 3

  4. Motivation • However, relations are treated as independent. KG embedding: each relation is treated as an atomic unit with separate parameters. Relation extraction: each relation is an independent class. 3

  5. Meta-relation: Relations Between Relations • Relation entailment: existence of one relation can entail the existence of another relation. 4

  6. Applications of Relation Entailment • Knowledge graph representation learning. 5

  7. Applications of Relation Entailment • Knowledge graph representation learning. • Relation extraction. 6

  8. Applications of Relation Entailment • Knowledge graph representation learning. • Relation extraction. • KG-based question answering. Q & A 7

  9. Relation Entailment Task Definition • Notations • Head and tail entities ℎ, 𝑢 ∈ ℰ . • Relations 𝑠 ∈ ℛ . " • Instances of a relation 𝐷 ! = ℎ, 𝑠, 𝑢 " . • Relation entailment • 𝑠 ⊨ 𝑠 # if and only if 𝐷 ! ⊆ 𝐷 ! ! . • Task of predicting relation entailment • Given a relation 𝑠 , choose its (direct) parent 𝑠 # ∈ ℒ . • A |ℒ| -way multi-class classification problem. 8

  10. RelEnt Dataset 9

  11. RelEnt Dataset 1. Instances collection (Apple, Jobs) (Microsoft, Gates) (Facebook, Zuckerberg) (Cisco, Bosack) … 9

  12. RelEnt Dataset 1. Instances collection 2. Downsampling (Apple, Jobs) (Apple, Jobs) (Microsoft, Gates) (Microsoft, Gates) (Facebook, Zuckerberg) (Facebook, Zuckerberg) (Cisco, Bosack) … … 9

  13. RelEnt Dataset 1. Instances collection 2. Downsampling 3. Relation expansion (Apple, Jobs) (Apple, Jobs) (Microsoft, Gates) (Microsoft, Gates) (Facebook, Zuckerberg) (Facebook, Zuckerberg) (Cisco, Bosack) … … 9

  14. RelEnt Dataset 1. Instances collection 2. Downsampling 3. Relation expansion (Apple, Jobs) (Apple, Jobs) (Microsoft, Gates) (Microsoft, Gates) (Facebook, Zuckerberg) (Facebook, Zuckerberg) (Cisco, Bosack) … … parent Sub-relations parent organization <laboratory, university>, <airline, airline>, <record label, record label>, … architectural style <railway station, architectural style>, <church, architectural style>, ... award received <film, Academy Awards>, <human, campaign medal>, <human, scholarship>, ... 9

  15. RelEnt Dataset 1. Instances collection 2. Downsampling 3. Relation expansion 4. Entity linking (Apple, Jobs) (Apple, Jobs) (Microsoft, Gates) (Microsoft, Gates) (Facebook, Zuckerberg) (Facebook, Zuckerberg) (Cisco, Bosack) … … parent Sub-relations parent organization <laboratory, university>, <airline, airline>, <record label, record label>, … architectural style <railway station, architectural style>, <church, architectural style>, ... award received <film, Academy Awards>, <human, campaign medal>, <human, scholarship>, ... 9

  16. RelEnt Dataset 1. Instances collection 2. Downsampling 3. Relation expansion 4. Entity linking 5. Train/dev/test split (Apple, Jobs) (Apple, Jobs) (Microsoft, Gates) (Microsoft, Gates) Train (Facebook, Zuckerberg) (Facebook, Zuckerberg) founded by ⊨ creator (Cisco, Bosack) … … illustrator ⊨ creator author ⊨ creator Dev developer ⊨ creator Test designed by ⊨ creator parent Sub-relations parent organization <laboratory, university>, <airline, airline>, <record label, record label>, … architectural style <railway station, architectural style>, <church, architectural style>, ... award received <film, Academy Awards>, <human, campaign medal>, <human, scholarship>, ... 9

  17. Relation Representation • With structured information 1. relation embedding Apple Jobs Microsoft Gates founded by Facebook Zuckerberg Cisco Bosack 2. entity embedding aggregation 10

  18. Relation Representation • With textual information 1. words in the middle 2. dependency path is founded by Apple Jobs nsubjpass founded agent → by pobj is created by Microsoft ← → Gates → the CEO prep nsubj ← is attr → of pobj founded Facebook Zuckerberg → … is the founder of Cisco Bosack … 11

  19. Relation Representation • Distribution-based author (Pride and Prejudice, Jane Austen) (The Lord of the Rings, J. R. R. Tolkien) (Anna Karenina, Leo Tolstoy) … founded by (Apple, Jobs) (Microsoft, Gates) (Facebook, Zuckerberg) (Cisco, Bosack) … 12

  20. Relation Representation • Distribution-based author (Pride and Prejudice, Jane Austen) (The Lord of the Rings, J. R. R. Tolkien) (Anna Karenina, Leo Tolstoy) … founded by (Apple, Jobs) (Microsoft, Gates) (Facebook, Zuckerberg) (Cisco, Bosack) … Kernel density estimation with a Gaussian kernel 12

  21. Relation Entailment Prediction 𝑠 # 𝑠 cos( , ) Unsupervised methods euc( , ) KL( , ) Supervised methods 13

  22. Experimental Settings • RelEnt Dataset • #Train, #Dev., #Test relations: 2055, 804, 692 • #Classes: 498 • Evaluation Metrics • Accuracy@1, Accuracy@3, and mean reciprocal rank (MRR) • Implementation Details • KG embedding methods: TransE, DistMult, ComplEx. • 50-dimensional GloVe embeddings. • BiLSTM with 64 hidden units, CNN with window size of 3 and 64 filters. 14

  23. Unsupervised Methods’ Results 0.572 0.6 0.506 0.491 0.5 0.4 0.327 0.3 0.2 0.1 0 relation emb entity emb entity emb entity emb cos dist euc cos Acc@1 of different unsupervised methods with TransE. 15

  24. Unsupervised Methods’ Results 0.572 0.6 0.6 0.572 0.506 0.501 0.491 0.486 0.5 0.5 0.4 0.4 0.327 0.3 0.3 0.2 0.2 0.1 0.1 0 0 relation emb entity emb entity emb entity emb cos dist euc cos TransE DistMult ComplEx Acc@1 of different unsupervised methods with TransE. Acc@1 of entity embedding with cosine using different KG representations. 15

  25. Supervised Methods’ Results • Supervised > unsupervised. • Textual information is complementary to structured information. 1 0.95 0.9 0.872 0.863 0.861 0.85 0.798 0.791 0.8 0.779 0.75 0.712 0.706 0.681 0.7 0.65 0.6 struct. struct. + word struct. + dep. Acc@1 Acc@3 MRR 16

  26. Error cases Parent Child (train) Child (test) follows has cause replaces instance of taxon rank legal form participant performer participating team (2010 Wimbledon Championships, Roger Federer) (First Continental Congress, George Washington) (Hambach Festival, Ludwig Börne) (Runaway, Linkin Park) (The Freewheelin’ Bob Dylan, Bob Dylan) (1977 UEFA Cup Final, Juventus FC) (2016–17 Premier League, Watford F.C.) (1956 Wrestling World Cup, Iran) 17

  27. Take away 1. Both structured and textual information contribute to relation entailment prediction. 2. Relation entailment prediction requires high-level abstraction. Paper: https://openreview.net/pdf?id=ToTf_MX7Vn Code: https://github.com/jzbjyb/RelEnt 18

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