stopbytes.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. package multibayes
  2. var (
  3. stopbytes = [][]byte{
  4. []byte(`i`),
  5. []byte(`me`),
  6. []byte(`my`),
  7. []byte(`myself`),
  8. []byte(`we`),
  9. []byte(`our`),
  10. []byte(`ours`),
  11. []byte(`ourselves`),
  12. []byte(`you`),
  13. []byte(`your`),
  14. []byte(`yours`),
  15. []byte(`yourself`),
  16. []byte(`yourselves`),
  17. []byte(`he`),
  18. []byte(`him`),
  19. []byte(`his`),
  20. []byte(`himself`),
  21. []byte(`she`),
  22. []byte(`her`),
  23. []byte(`hers`),
  24. []byte(`herself`),
  25. []byte(`it`),
  26. []byte(`its`),
  27. []byte(`itself`),
  28. []byte(`they`),
  29. []byte(`them`),
  30. []byte(`their`),
  31. []byte(`theirs`),
  32. []byte(`themselves`),
  33. []byte(`what`),
  34. []byte(`which`),
  35. []byte(`who`),
  36. []byte(`whom`),
  37. []byte(`this`),
  38. []byte(`that`),
  39. []byte(`these`),
  40. []byte(`those`),
  41. []byte(`am`),
  42. []byte(`is`),
  43. []byte(`are`),
  44. []byte(`was`),
  45. []byte(`were`),
  46. []byte(`be`),
  47. []byte(`been`),
  48. []byte(`being`),
  49. []byte(`have`),
  50. []byte(`has`),
  51. []byte(`had`),
  52. []byte(`having`),
  53. []byte(`do`),
  54. []byte(`does`),
  55. []byte(`did`),
  56. []byte(`doing`),
  57. []byte(`would`),
  58. []byte(`should`),
  59. []byte(`could`),
  60. []byte(`ought`),
  61. []byte(`i'm`),
  62. []byte(`you're`),
  63. []byte(`he's`),
  64. []byte(`she's`),
  65. []byte(`it's`),
  66. []byte(`we're`),
  67. []byte(`they're`),
  68. []byte(`i've`),
  69. []byte(`you've`),
  70. []byte(`we've`),
  71. []byte(`they've`),
  72. []byte(`i'd`),
  73. []byte(`you'd`),
  74. []byte(`he'd`),
  75. []byte(`she'd`),
  76. []byte(`we'd`),
  77. []byte(`they'd`),
  78. []byte(`i'll`),
  79. []byte(`you'll`),
  80. []byte(`he'll`),
  81. []byte(`she'll`),
  82. []byte(`we'll`),
  83. []byte(`they'll`),
  84. []byte(`isn't`),
  85. []byte(`aren't`),
  86. []byte(`wasn't`),
  87. []byte(`weren't`),
  88. []byte(`hasn't`),
  89. []byte(`haven't`),
  90. []byte(`hadn't`),
  91. []byte(`doesn't`),
  92. []byte(`don't`),
  93. []byte(`didn't`),
  94. []byte(`won't`),
  95. []byte(`wouldn't`),
  96. []byte(`shan't`),
  97. []byte(`shouldn't`),
  98. []byte(`can't`),
  99. []byte(`cannot`),
  100. []byte(`couldn't`),
  101. []byte(`mustn't`),
  102. []byte(`let's`),
  103. []byte(`that's`),
  104. []byte(`who's`),
  105. []byte(`what's`),
  106. []byte(`here's`),
  107. []byte(`there's`),
  108. []byte(`when's`),
  109. []byte(`where's`),
  110. []byte(`why's`),
  111. []byte(`how's`),
  112. []byte(`a`),
  113. []byte(`an`),
  114. []byte(`the`),
  115. []byte(`and`),
  116. []byte(`but`),
  117. []byte(`if`),
  118. []byte(`or`),
  119. []byte(`because`),
  120. []byte(`as`),
  121. []byte(`until`),
  122. []byte(`while`),
  123. []byte(`of`),
  124. []byte(`at`),
  125. []byte(`by`),
  126. []byte(`for`),
  127. []byte(`with`),
  128. []byte(`about`),
  129. []byte(`against`),
  130. []byte(`between`),
  131. []byte(`into`),
  132. []byte(`through`),
  133. []byte(`during`),
  134. []byte(`before`),
  135. []byte(`after`),
  136. []byte(`above`),
  137. []byte(`below`),
  138. []byte(`to`),
  139. []byte(`from`),
  140. []byte(`up`),
  141. []byte(`down`),
  142. []byte(`in`),
  143. []byte(`out`),
  144. []byte(`on`),
  145. []byte(`off`),
  146. []byte(`over`),
  147. []byte(`under`),
  148. []byte(`again`),
  149. []byte(`further`),
  150. []byte(`then`),
  151. []byte(`once`),
  152. []byte(`here`),
  153. []byte(`there`),
  154. []byte(`when`),
  155. []byte(`where`),
  156. []byte(`why`),
  157. []byte(`how`),
  158. []byte(`all`),
  159. []byte(`any`),
  160. []byte(`both`),
  161. []byte(`each`),
  162. []byte(`few`),
  163. []byte(`more`),
  164. []byte(`most`),
  165. []byte(`other`),
  166. []byte(`some`),
  167. []byte(`such`),
  168. []byte(`no`),
  169. []byte(`nor`),
  170. []byte(`not`),
  171. []byte(`only`),
  172. []byte(`own`),
  173. []byte(`same`),
  174. []byte(`so`),
  175. []byte(`than`),
  176. []byte(`too`),
  177. []byte(`very`),
  178. []byte(`-`),
  179. }
  180. )