Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 1.98 KB | None | 0 0
  1. ELF(2):Bob wanted to quell rumors of his being ousted.
  2. input: Bob wanted to quell rumors of his being ousted.
  3. FNFRAME: DESIRING,EXPERIENCER_FOCUS
  4. CDFRAME: DESIRE
  5. VFrame: WANT
  6. Pivot : Bob
  7. 'Wanter' : Bob
  8. Theme : to quell rumors of his being ousted
  9. 'thing wanted' : to quell rumors of his being ousted
  10. EF: (wanted (ARG0: Bob) (ARG1: to quell rumors of his being ousted) )
  11. LF: (want (Pivot: Bob) (Theme: to quell rumors of his being ousted) )
  12. CF: (DESIRE (fn: Desiring,Experiencer_focus) (vframe: want) (Pivot: Bob) (Theme: to quell rumors of his being ousted) )
  13. PC:
  14. frame(g36,vframe,'want').
  15. frame(g36,cdframe,'DESIRE').
  16. frame(g36,fnframe,'desiring,experiencer_focus').
  17. frame(g36,pivot,'Bob').
  18. frame(g36,theme,'to quell rumors of his being ousted').
  19.  
  20. ----------
  21. FNFRAME: NA
  22. CDFRAME: SUPRESS
  23. VFrame: QUELL
  24. ARG0 : Bob
  25. 'causer' : Bob
  26. ARG1 : rumors of his being ousted
  27. 'entity quelled' : rumors of his being ousted
  28. EF: (quell (ARG0: Bob) (ARG1: rumors of his being ousted) )
  29. LF: (quell (ARG0: Bob) (ARG1: rumors of his being ousted) )
  30. CF: (SUPRESS (fn: NA) (vframe: quell) (ARG0: Bob) (ARG1: rumors of his being ousted) )
  31. PC:
  32. sframe(g37,g36,theme).
  33. frame(g37,vframe,'quell').
  34. frame(g37,cdframe,'SUPRESS').
  35. frame(g37,fnframe,'na').
  36. frame(g37,arg0,'Bob').
  37. frame(g37,arg1,'rumors of his being ousted').
  38.  
  39. ----------
  40. FNFRAME: REMOVING,CHANGE_OF_LEADERSHIP
  41. CDFRAME: DISMISS
  42. VFrame: OUST
  43. Theme : his
  44. 'Removing.Theme' : his
  45. 'ex-employee' : his
  46. EF: (ousted (ARG1: his) )
  47. LF: (oust (Theme: his) )
  48. CF: (DISMISS (fn: Removing,Change_of_leadership) (vframe: oust) (Theme: his) )
  49. PC:
  50. sframe(g38,g37,arg1).
  51. frame(g38,vframe,'oust').
  52. frame(g38,cdframe,'DISMISS').
  53. frame(g38,fnframe,'removing,change_of_leadership').
  54. frame(g38,theme,'his').
  55.  
  56. ----------
  57. QC:sframe(g38,g37,arg1),frame(G38,vframe,'oust'),frame(G38,cdframe,'DISMISS'),frame(G38,fnframe,'removing,change_of_leadership'),frame(G38,theme,'his'),
  58.  
  59. Have to work out ambiguous verbs like "fire" as in "fired a gun" or "fired from job".
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement