logical reduction of metarules
play

Logical reduction of metarules Andrew Cropper & Sophie Tourret - PowerPoint PPT Presentation

Logical reduction of metarules Andrew Cropper & Sophie Tourret ILP Examples Learner Computer program Background knowledge Mode declarations Progol ILASP Aleph XHAIL TILDE Metarules Metagol MIL-Hex ILP ProPPR Clint


  1. Logical reduction of metarules Andrew Cropper & Sophie Tourret

  2. ILP Examples Learner Computer program Background knowledge

  3. Mode declarations Progol ILASP Aleph XHAIL TILDE …

  4. Metarules Metagol MIL-Hex ∂ ILP ProPPR Clint MOBAL … (almost all neural-ILP approaches)

  5. Metarules P (A,B) ← Q (A,C), R (C,B)

  6. Metarules P (A,B) ← Q (A), R (A,B)

  7. Metarules P (A,B) ← Q (A), R (A,B)

  8. Input % background parent(alice,bob). parent(bob,charlie). % example grandparent(alice,charlie). % metarule P (A,B) ← Q (A,C), R (C,B)

  9. Output % subs Subs = { P \grandparent, Q \parent, R \parent} % program grandparent(A,B) ← parent(A,C), parent(C,B)

  10. Where do we get metarules from?

  11. Completeness Cannot learn grandparent/2 with only P(X) ← Q(X) Efficiency More metarules = larger hypothesis space

  12. Idea: find logically minimal sets

  13. Entailment redundant metarules [Cropper and Muggleton, ILP14] The clause C is entailment redundant in the clausal theory T ∪ {C} when T ⊨ C

  14. Entailment redundancy C1 = p(A,B) ← q(A,B) C2 = p(A,B) ← q(A,B),r(A) C3 = p(A,B) ← q(A,B),r(A),s(B,C)

  15. Entailment redundancy C1 = p(A,B) ← q(A,B) C2 = p(A,B) ← q(A,B),r(A) C3 = p(A,B) ← q(A,B),r(A),s(B,C) {C1} ⊨ {C2,C3}

  16. Entailment reduction P(A,B) ← Q(A,B) P(A,B) ← Q(B,A) P(A,B) ← Q(A,C),R(B,C) P(A,B) ← Q(A,C),R(C,B) P(A,B) ← Q(B,A),R(A,B) ? P(A,B) ← Q(B,A),R(B,A) P(A,B) ← Q(B,C),R(A,C) P(A,B) ← Q(B,C),R(C,A) P(A,B) ← Q(C,A),R(B,C) P(A,B) ← Q(C,A),R(C,B) P(A,B) ← Q(C,B),R(A,C) P(A,B) ← Q(C,B),R(C,A)

  17. Entailment reduction P(A,B) ← Q(A,B) P(A,B) ← Q(B,A) P(A,B) ← Q(B,A) P(A,B) ← Q(A,C),R(B,C) P(A,B) ← Q(A,C),R(C,B) P(A,B) ← Q(B,A),R(A,B) P(A,B) ← Q(B,A),R(B,A) P(A,B) ← Q(B,C),R(A,C) P(A,B) ← Q(B,C),R(C,A) P(A,B) ← Q(C,A),R(B,C) P(A,B) ← Q(C,A),R(C,B) P(A,B) ← Q(A,C),R(C,B) P(A,B) ← Q(C,B),R(A,C) P(A,B) ← Q(C,B),R(C,A)

  18. Entailment reduction problem � C1 = P(A,B) ← Q(A,B) C2 = P(A,B) ← Q(A,B),R(A) C3 = P(A,B) ← Q(A,B),R(A,B) C4 = P(A,B) ← Q(A,B),R(A,B),S(A,B)

  19. Entailment reduction problem � C1 = P(A,B) ← Q(A,B) C2 = P(A,B) ← Q(A,B),R(A) C3 = P(A,B) ← Q(A,B),R(A,B) C4 = P(A,B) ← Q(A,B),R(A,B),S(A,B) {C1} ⊨ {C2,C3,C4}

  20. Entailment reduction problem � C1 = P(A,B) ← Q(A,B) C2 = P(A,B) ← Q(A,B),R(A) C3 = P(A,B) ← Q(A,B),R(A,B) C4 = P(A,B) ← Q(A,B),R(A,B),S(A,B) {C1} ⊨ {C2,C3,C4} father(A,B) ← parent(A,B), male(A) ✖

  21. Derivation redundancy [Cropper and Tourret, ILP18, JELIA19] The clause C is derivationally redundant in the theory T ∪ {C} when T ⊢ C

  22. Derivation redundancy The clause C is derivationally redundant in the theory T ∪ {C} when T ⊢ C SLD-resolution in this work

  23. Derivation redundancy C1 = P(A,B) ← Q(A,B) C2 = P(A,B) ← Q(A,B),R(A) C3 = P(A,B) ← Q(A,B),R(A,B) C4 = P(A,B) ← Q(A,B),R(A,B),S(A,B)

  24. Derivation redundancy C1 = P(A,B) ← Q(A,B) C2 = P(A,B) ← Q(A,B),R(A) C3 = P(A,B) ← Q(A,B),R(A,B) C4 = P(A,B) ← Q(A,B),R(A,B),S(A,B) {C1,C2,C3} ⊢ {C4} father(A,B) ← parent(A,B), male(A) ✔

  25. MLJ Paper We compare subsumption, entailment, and derivation reduction We theoretically show whether infinite fragments of metarules can be logically reduced to finite sets We run the reduction algorithms on finite sets of metarules to identify minimal sets We experimentally compare the learning performance of Metagol when supplied with reduced sets of metarule

  26. Theoretical questions Q . Can we reduce M to a fragment with only two body literals? Q . Can we reduce M to a fragment with finitely many body literals? Q . If M has a finite reduction, what is that fragment?

  27. Idea 1. Generate big sets of metarules 2. Run the reduction algorithms on the sets 3. Study the results.

  28. H am maximum arity a maximum body literals m

  29. Can the connected fragment C 2 ∞ be reduced to two body literals?

  30. Can the connected fragment C 2 ∞ be reduced to two body literals?

  31. Can the connected fragment C 2 ∞ be reduced to two body literals? C 2 ∞ cannot be derivationally reduced to C 22

  32. Can the connected fragment C 2 ∞ be reduced to two body literals? C 2 ∞ cannot be derivationally reduced to a finite fragment!

  33. Derivation reduction of connected fragment

  34. Why not?

  35. Can the Datalog D 2 ∞ fragment be reduced to two body literals?

  36. Can the Datalog D 2 ∞ fragment be reduced to two body literals? D 2 ∞ cannot be derivationally reduced to a finite fragment

  37. Reduction summary

  38. Does it matter? Is there any difference in learning performance when using different reduced sets of metarules?

  39. Trains

  40. Accuracies

  41. Learning times

  42. String transformations

  43. String transformations

  44. Inducing game rules

  45. Inducing game rules

  46. Conclusions New form of logical reduction Negative theoretical results (especially for MIL) Little impact on practical performance

  47. Todo Overcome negative theoretical result Expand results to higher-arities Identify domain-specific sets of metarules Identify optimal sets of metarule Logically reduce BK

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