di discovering graph patterns for fact ct check cking in
play

Di Discovering Graph Patterns for Fact ct Check cking in - PowerPoint PPT Presentation

Di Discovering Graph Patterns for Fact ct Check cking in Knowledge Graphs Peng Lin Qi Song Jialiang Shen Yinghui Wu Washington State University Beijing University of Washington State University Posts and


  1. Di Discovering Graph Patterns for Fact ct Check cking in Knowledge Graphs Peng Lin Qi Song Jialiang Shen Yinghui Wu Washington State University Beijing University of Washington State University Posts and Telecommunications Pacific Northwest National Laboratory

  2. Wha What is fact che hecki king? ng? Fact: a triple predicate Knowledge Graph (KG): G= G=(V, E , E, L , L) (philosopher) (philosopher) Triple < " # , %, " & > Cicero Plato - " # and " & are two nodes; - # and & are node labels; p gaveBy u b - % is a relationship; l i cited s h e d e.g., cited <Cicero, influencedBy, Plato> Against Dialogues Against Piso Verres belongsTo - " # = “Cicero”, " & = “Plato” b e l o n g s - # , & = “philosopher” T o - % = “influencedBy” Ancient Philosophy Fact checking answers if a fact belongs to the missing part of KG.

  3. Fa Fact Checking in Graphs (philosopher) (philosopher) “If a philosopher X gave one or Cicero Plato more speeches, which cited a book of another philosopher Y p gaveBy u b with the same topic, then the l i cited s h e philosopher X is likely to be d lnfluencedBy Y .” cited Against Dialogues Against Piso Verres belongsTo b e l o n g s T A fact can be supported by its o surrounded substructures! Ancient Philosophy Graph structure can be evidence for fact checking.

  4. Fa Fact Checking via Graph Patterns Pattern: regularity in KG (philosopher) (philosopher) (philosopher) (philosopher) $ " Cicero $ # Plato ! " ! # p gaveBy u b l i cited s h e (book) (speech) d cited Against Dialogues Against Piso Verres (topic) belongsTo b e l o n g s T o Ancient We say % covers a fact if Philosophy & ' and & ( matches ) ' and ) ( with * . Graph structure can be evidence for fact checking.

  5. Ru Rule Model: Graph Fact Checking Ru Rules (GFC) GFC ! ∶ # $, & → (($, &) RHS LHS (philosopher) (philosopher) (philosopher) (philosopher) + - + , + , + - . Rule Semantics: (speech) (book) - GFC / states that if pattern 0(,, -) covers a fact < 2 $ , (, 2 & > , then it is true. Rule matching: (topic) - Subgraph isomorphism overkill: redundant, too strict, too many - Approximate matching (S. Ma, VLDB 2011) A GFC rule contains two patterns connected by two anchored nodes.

  6. Ru Rule St Statistics § Given: G = V, E, L § GFC * ∶ , -, . → 0(-, .) § True facts Γ # : sampled from the edges F in I. • § False facts Γ L : sampled from node pairs (M - , M . ) that have no 0 between them. • following partial closed world assumption ( PC PCA ) • " # " L ! " # T " # ! " L T " L Statistical measures are defined in terms of graph and a set of training facts.

  7. Su Support a and C Confidence ce GFC: ! ∶ # $, & → (($, &) |0 1 2 ∩4(1 2 )| ((: $ , : & ) ((: $ , : & ) ((: $ , : & ) § supp ! = |4(1 2 )| Ratio of facts can be covered supp = 2/3 out of r(x, y) triples. # # |0 1 2 ∩4(1 2 )| (: $ , : & ) (: $ , : & ) (: $ , : & ) § conf ! = |0 1 2 9 | conf = 1/2 Ratio of facts can be covered out of (x, y) pairs, under PCA . # # Support and confidence are for pattern mining.

  8. Si Significance ce GFC: ! ∶ # $, & → (($, &) G-Test score sig !, ., / = 2|Γ 4 |(. ln . / + 1 − . ln 1 − . 1 − / ) : and ; are the supports of <(=, >) for positive and negative facts, respectively. A “rounded up” score max{sig !, ., C , sig(!, C, /)} is used in practice. where C is a small positive to prevent infinities. In our work, we also normalize it between 0 and 1 by a sigmoid function. Significance is the ability to distinguish true and false facts.

  9. Di Diversity ty ! is a set of GFCs. 1 div ! = |Γ ) | * * supp(7) +∈- . / ∈ 0 1 (!) 8 9 (:) is the GFCs in : that cover a true fact ; . E.g. ! < = = < , = ? , = @ , ! ? = {= B , = C , = D } F(GH, GI) < F(GH, GI) ? F(GH, GI) @ F(GH, GI) < F(GH, GI) ? F(GH, GI) @ ✓ ✓ ✓ ✓ = < = B ✓ ✓ ✓ ✓ = C = ? ✓ ✓ ✓ ✓ = D = @ > div ! K = 1.6 div ! J = 2 Diversity is to measure the redundancy of a set of GFCs

  10. To Top- ! GF GFC Discovery Problem ∑ 9 ∈) sig(*) . To cope with diversity, the total significance sig ) = Coverage function: cov ) = sig ) + div()) Problem formulation: Given graph " , support threshold # and confidence threshold $ , and a set of true facts Γ & and a set of false facts Γ ' , and integer ( , identify a size- ( set of GFCs ) , such that: (a) For each GFC * in ) , supp * ≥ #, conf * ≥ $ . (b) cov ) is maximized. More significance, less redundancy.

  11. Pr Properties of cov(%) § cov % is a set function. marginal gain: mg % = cov % ∪ {,} − cov % § cov % is monotone. Adding elements to % does not decrease cov(%) . § cov % is submodular. If % / ⊆ % 1 and , ∉ % 1 , then mg % 1 ≤ mg(% / ) . Submodularity is a good property for set optimization problem.

  12. Di Discovery Algorith thms § OPT = max cov $ - Cannot afford to enumerate every size- % set of GFCs. - cov $ is a monotone submodular function. - A greedy algorithm can have (1 − ) * ) approximation of OPT. § GFC_batch : 1. Mine all the patterns satisfying support and confidence. 2. , = ∅ While , < % , do 3. Select the pattern 0 with the largest marginal gain. 4. GFC_batch: mining in batch and selecting greedily

  13. Di Discovery Algorith thms § GFC_batch is infeasible and slow. § Still, it requires mine all patterns first. § Can we do better? § GFC_stream : § Interleave pattern generation and rule selection. § Find the top- ! GFCs on-the-fly . § One pass of pattern mining. § ( # $ − &) approximation of OPT GFC_stream: mining and selecting on-the-fly!

  14. Di Discovery Algorith thms Ø PGen: pattern generation § Generates patterns in a stream way. PGen § Pass the patterns for selection § Can be in any order, e.g., Apriori, DFS, or random. pattern decision stream Ø PSel: pattern selection PSel § Selects and constructs GFCs on-the-fly. § Based on a “sieve” strategy, ! Fast compute! " − $ OPT 1. Estimate the range of OPT by max{ cov(,) } 2. Each one is a size- . sieve with an estimation / for OPT . 3. While the sieves are not full 5 if mg(,, 3) ≥ ( " − cov(3)) /( . – |3| ), add , to sieve 3 . 4. 5. Signal PGen to stop and output the sieve with largest cov . GFC_stream: mining and selecting on-the-fly!

  15. GF GFC-ba based d fact che hecki king ng Ø GFact R : Using GFCs as rules: § Invokes GFC_stream to find top- ! GFCs. § “Hit and miss” § True if a fact is covered by one GFC. § False If no GFC can cover the fact. § A typical rule model to compare with: AMIE+ Ø GFact: Using GFCs in supervised link prediction: § A feature vector of size ! . § Each entry encodes the presence of one GFC. § Build a classifier, by default, Logistic Regression. § A typical rule models to compare with: PRA

  16. Ex Exper erimen ent se settings Dataset category |V| |E| # node labels # edge labels # < ", $, % > Yago Knowledge base 2.1 M 4.0 M 2273 33 15.5 K DBpedia Knowledge base 2.2 M 7.4 M 73 584 8240 Wikidata Knowledge base 10.8 M 41.4 M 18383 693 209 K MAG Academic network 0.6 M 1.71 M 8665 6 11742 Offshore Social network 1.0 M 3.3 M 356 274 633 Tasks Rule Mining Fact Checking Our methods GFC_batch , GFC_stream GFact , GFact R Baselines AMIE+, PRA AMIE+, PRA, KGMiner running time vs. ' , Γ ) Evaluation Metrics prediction rate, precision, recall, F1

  17. Ex Exper erimen ent: effi ficien ency Overview GFC_stream takes 25.7 seconds to discover 200 GFCs over Wikidata § with 41.4 million edges and 6000 training facts. On average, GFC_stream is 3.2 times faster than AMIE+ over DBpedia. § 2K 10 4 GFC_stream GFC_batch AMIE+ 1.5K Time (seconds) Time (seconds) 10 3 PRA 1K 10 2 GFC_stream 0.5K 10 GFC_batch AMIE+ PRA 1 0 3K 6K 9K 12K 15K 0.6M 0.9M 1.2M 1.5M 1.8M Varying |Γ $ | (DBpedia) Varying ! (DBPedia)

  18. Ex Exper erimen ent: effec ectiven eness ess Compared with AMIE+, PRA and KGMiner, respectively, on average: GFact achieves additional 30%, 20%, and 5% gains of precision over DBpedia. § GFact achieves additional 20%, 15%, and 16% gains of F1-score over Wikidata. § 1 1 GFact GFact GFact R GFact R Prediction Rate Prediction Rate 0.8 0.8 0.6 0.6 75K 90K 105K 120K 135K 50 100 150 200 250 Varying |Γ # | (Wikidata) Varying $ (Wikidata)

  19. Case stu tudy: are tw two anonymous companies same ? ? (O (Offsh shor ore) AMIE+ GFC (officer) shareholder beneficiary registerIn( , ) ⋀ registerIn( , ) (A. Company) (A. Company) ! " ! # ⟹ (jurisdiction) isSameAs( , ) registeredIn isActiveIn isIn isIn • If two anonymous companies are (place) (address) registered in the same place, then they are same. If an officer is both a shareholder of company & ' • • Low accuracy. and a beneficiary of company & ( , and & ' has an address and is registered through a jurisdiction in a place, and & ( is active in the same place, then they are likely to be the same anonymous company.

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