Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.39 KB | None | 0 0
  1. s(s(NP,VP)) --> noun_phrase(NP), verb_phrase(VP).
  2. noun_phrase(np(D,NA)) --> det(D), noun_adj(NA).
  3. noun_adj(na(AD,N))--> adjective(AD), noun_adj(N).
  4. noun_adj(na(N,PP)) --> noun(N),preposition_phrase(PP).
  5. noun_adj(na(N)) --> noun(N).
  6. noun_adj(na(N,VP)) --> noun(N),verb_phrase(VP).
  7. noun_adj(na(N,CJ,NA)) --> noun(N),conjunction(CJ),noun_adj(NA).
  8. noun_adj(na(N,CJ,NP)) --> noun(N),conjunction(CJ),noun_phrase(NP).
  9. noun_adj(na(N,CJ)) --> noun(N),conjunction(CJ).
  10. preposition_phrase(pp(PR,NP)) --> preposition(PR), noun_phrase(NP).
  11. preposition_phrase(pp(PR,N)) --> preposition(PR),noun(N).
  12. preposition_phrase(pp(PR)) --> preposition(PR).
  13. verb_phrase(vp(V,NP)) --> verb(V), noun_phrase(NP).
  14. verb_phrase(vp(V,D,NA,NP)) --> verb(V), det(D), noun_adj(NA),noun_phrase(NP).
  15. verb_phrase(vp(V,NA,NP)) --> verb(V), noun_adj(NA),noun_phrase(NP).
  16. verb_phrase(vp(V,NP)) --> verb(V), noun_adj(NP).
  17. verb_phrase(vp(AV,VP)) --> adverb(AV), verb_phrase(VP).
  18. verb_phrase(vp(PR,VP)) --> pronoun(PR), verb_phrase(VP).
  19. verb_phrase(vp(V,PR,NP)) --> verb(V), preposition(PR), noun_phrase(NP).
  20. verb_phrase(vp(V,CJ,VP)) --> verb(V), conjunction(CJ), verb_phrase(VP).
  21. verb_phrase(vp(V)) --> verb(V).
  22. det(d(the)) --> [the].
  23. det(d(some)) --> [some].
  24. det(d(a)) --> [a].
  25. det(d(an)) --> [an].
  26. det(d(our)) --> [our].
  27. det(d(many)) --> [many].
  28. det(d(every)) --> [every].
  29. det(d(other)) --> [other].
  30. det(d(all)) --> [all].
  31. det(d(my)) --> [my].
  32. det(d(your)) --> [your].
  33. det(d(his)) --> [his].
  34. det(d(her)) --> [her].
  35. det(d(their)) --> [their].
  36. noun(n(bat)) --> [bat].
  37. noun(n(house)) --> [house].
  38. noun(n(cat)) --> [cat].
  39. noun(n(boy)) --> [boy].
  40. noun(n(school)) --> [school].
  41. noun(n(students)) --> [students].
  42. noun(n(professors)) --> [professors].
  43. noun(n(lecturers)) --> [lecturers].
  44. noun(n(scientists)) --> [scientists].
  45. noun(n(researchers)) --> [researchers].
  46. noun(n(envelope)) --> [envelope].
  47. noun(n(shed)) --> [shed].
  48. noun(n(building)) --> [building].
  49. noun(n(man)) --> [man].
  50. noun(n(tree)) --> [tree].
  51. noun(n(girl)) --> [girl].
  52. noun(n(box)) --> [box].
  53. noun(n(white)) --> [white].
  54. noun(n(room)) --> [room].
  55. noun(n(woman)) --> [woman].
  56. verb(v(cried)) --> [cried].
  57. verb(v(gave)) --> [gave].
  58. verb(v(ate)) --> [ate].
  59. verb(v(worked)) --> [worked].
  60. verb(v(climbed)) --> [climbed].
  61. verb(v(pushed)) --> [pushed].
  62. verb(v(stored)) --> [stored].
  63. verb(v(watched)) --> [watched].
  64. verb(v(admired)) --> [admired].
  65. verb(v(appreciated)) --> [appreciated].
  66. verb(v(talked)) --> [talked].
  67. verb(v(walked)) --> [walked].
  68. verb(v(cut)) --> [cut].
  69. verb(v(swam)) --> [swam].
  70. verb(v(smiled)) --> [smiled].
  71. verb(v(threw)) --> [threw].
  72. verb(v(slept)) --> [slept].
  73. verb(v(ran)) --> [ran].
  74. verb(v(washed)) --> [washed].
  75. verb(v(stole)) --> [stole].
  76. verb(v(kicked)) --> [kicked].
  77. verb(v(screamed)) --> [screamed].
  78. adjective(ad(white)) --> [white].
  79. adjective(ad(bright)) --> [bright].
  80. adjective(ad(poor)) --> [poor].
  81. adjective(ad(talented)) --> [talented].
  82. adjective(ad(brilliant)) --> [brilliant].
  83. adjective(ad(empty)) --> [empty].
  84. adjective(ad(large)) --> [large].
  85. adjective(ad(old)) --> [old].
  86. adjective(ad(big)) --> [big].
  87. adjective(ad(hungry)) --> [hungry].
  88. adjective(ad(young)) --> [young].
  89. adjective(ad(angry)) --> [angry].
  90. adjective(ad(ambitious)) --> [ambitious].
  91. adjective(ad(calm)) --> [calm].
  92. adjective(ad(fancy)) --> [fancy].
  93. adjective(ad(nice)) --> [nice].
  94. adjective(ad(helpful)) --> [helpful].
  95. adjective(ad(nervous)) --> [nervous].
  96. adjective(ad(tall)) --> [tall].
  97. adjective(ad(short)) --> [short].
  98. adjective(ad(scary)) --> [scary].
  99. preposition(pr(at)) --> [at].
  100. preposition(pr(in)) --> [in].
  101. preposition(pr(after)) --> [after].
  102. preposition(pr(for)) --> [for].
  103. preposition(pr(behind)) --> [behind].
  104. preposition(pr(of)) --> [of].
  105. preposition(pr(with)) --> [with].
  106. preposition(pr(from)) --> [from].
  107. preposition(pr(into)) --> [into].
  108. preposition(pr(during)) --> [during].
  109. preposition(pr(including)) --> [including].
  110. adverb(av(secretly)) --> [secretly].
  111. adverb(av(slowly)) --> [slowly].
  112. adverb(av(quickly)) --> [quickly].
  113. adverb(av(behind)) --> [behind].
  114. adverb(av(happily)) --> [happily].
  115. adverb(av(recklessly)) --> [recklessly].
  116. adverb(av(eagerly)) --> [eagerly].
  117. adverb(av(lazily)) --> [lazily].
  118. adverb(av(cheerfully)) --> [cheerfully].
  119. adverb(av(wishfully)) --> [wishfully].
  120. pronoun(pr(who)) --> [who].
  121. pronoun(pr(some)) --> [some].
  122. conjunction(cj(and)) --> [and].
  123. conjunction(cj(for)) --> [for].
  124. conjunction(cj(while)) --> [while].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement