Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.26 KB | None | 0 0
  1. /nix/store/fk7s3j01mld92hvkyh4lv53gwl6dvq64-python3.7-nltk-3.4.4
  2. ├── lib
  3. │   └── python3.7
  4. │   └── site-packages
  5. │   ├── nltk
  6. │   │   ├── app
  7. │   │   │   ├── chartparser_app.py
  8. │   │   │   ├── chunkparser_app.py
  9. │   │   │   ├── collocations_app.py
  10. │   │   │   ├── concordance_app.py
  11. │   │   │   ├── __init__.py
  12. │   │   │   ├── nemo_app.py
  13. │   │   │   ├── __pycache__
  14. │   │   │   │   ├── chartparser_app.cpython-37.pyc
  15. │   │   │   │   ├── chunkparser_app.cpython-37.pyc
  16. │   │   │   │   ├── collocations_app.cpython-37.pyc
  17. │   │   │   │   ├── concordance_app.cpython-37.pyc
  18. │   │   │   │   ├── __init__.cpython-37.pyc
  19. │   │   │   │   ├── nemo_app.cpython-37.pyc
  20. │   │   │   │   ├── rdparser_app.cpython-37.pyc
  21. │   │   │   │   ├── srparser_app.cpython-37.pyc
  22. │   │   │   │   ├── wordfreq_app.cpython-37.pyc
  23. │   │   │   │   └── wordnet_app.cpython-37.pyc
  24. │   │   │   ├── rdparser_app.py
  25. │   │   │   ├── srparser_app.py
  26. │   │   │   ├── wordfreq_app.py
  27. │   │   │   └── wordnet_app.py
  28. │   │   ├── book.py
  29. │   │   ├── ccg
  30. │   │   │   ├── api.py
  31. │   │   │   ├── chart.py
  32. │   │   │   ├── combinator.py
  33. │   │   │   ├── __init__.py
  34. │   │   │   ├── lexicon.py
  35. │   │   │   ├── logic.py
  36. │   │   │   └── __pycache__
  37. │   │   │   ├── api.cpython-37.pyc
  38. │   │   │   ├── chart.cpython-37.pyc
  39. │   │   │   ├── combinator.cpython-37.pyc
  40. │   │   │   ├── __init__.cpython-37.pyc
  41. │   │   │   ├── lexicon.cpython-37.pyc
  42. │   │   │   └── logic.cpython-37.pyc
  43. │   │   ├── chat
  44. │   │   │   ├── eliza.py
  45. │   │   │   ├── iesha.py
  46. │   │   │   ├── __init__.py
  47. │   │   │   ├── __pycache__
  48. │   │   │   │   ├── eliza.cpython-37.pyc
  49. │   │   │   │   ├── iesha.cpython-37.pyc
  50. │   │   │   │   ├── __init__.cpython-37.pyc
  51. │   │   │   │   ├── rude.cpython-37.pyc
  52. │   │   │   │   ├── suntsu.cpython-37.pyc
  53. │   │   │   │   ├── util.cpython-37.pyc
  54. │   │   │   │   └── zen.cpython-37.pyc
  55. │   │   │   ├── rude.py
  56. │   │   │   ├── suntsu.py
  57. │   │   │   ├── util.py
  58. │   │   │   └── zen.py
  59. │   │   ├── chunk
  60. │   │   │   ├── api.py
  61. │   │   │   ├── __init__.py
  62. │   │   │   ├── named_entity.py
  63. │   │   │   ├── __pycache__
  64. │   │   │   │   ├── api.cpython-37.pyc
  65. │   │   │   │   ├── __init__.cpython-37.pyc
  66. │   │   │   │   ├── named_entity.cpython-37.pyc
  67. │   │   │   │   ├── regexp.cpython-37.pyc
  68. │   │   │   │   └── util.cpython-37.pyc
  69. │   │   │   ├── regexp.py
  70. │   │   │   └── util.py
  71. │   │   ├── classify
  72. │   │   │   ├── api.py
  73. │   │   │   ├── decisiontree.py
  74. │   │   │   ├── __init__.py
  75. │   │   │   ├── maxent.py
  76. │   │   │   ├── megam.py
  77. │   │   │   ├── naivebayes.py
  78. │   │   │   ├── positivenaivebayes.py
  79. │   │   │   ├── __pycache__
  80. │   │   │   │   ├── api.cpython-37.pyc
  81. │   │   │   │   ├── decisiontree.cpython-37.pyc
  82. │   │   │   │   ├── __init__.cpython-37.pyc
  83. │   │   │   │   ├── maxent.cpython-37.pyc
  84. │   │   │   │   ├── megam.cpython-37.pyc
  85. │   │   │   │   ├── naivebayes.cpython-37.pyc
  86. │   │   │   │   ├── positivenaivebayes.cpython-37.pyc
  87. │   │   │   │   ├── rte_classify.cpython-37.pyc
  88. │   │   │   │   ├── scikitlearn.cpython-37.pyc
  89. │   │   │   │   ├── senna.cpython-37.pyc
  90. │   │   │   │   ├── svm.cpython-37.pyc
  91. │   │   │   │   ├── tadm.cpython-37.pyc
  92. │   │   │   │   ├── textcat.cpython-37.pyc
  93. │   │   │   │   ├── util.cpython-37.pyc
  94. │   │   │   │   └── weka.cpython-37.pyc
  95. │   │   │   ├── rte_classify.py
  96. │   │   │   ├── scikitlearn.py
  97. │   │   │   ├── senna.py
  98. │   │   │   ├── svm.py
  99. │   │   │   ├── tadm.py
  100. │   │   │   ├── textcat.py
  101. │   │   │   ├── util.py
  102. │   │   │   └── weka.py
  103. │   │   ├── cluster
  104. │   │   │   ├── api.py
  105. │   │   │   ├── em.py
  106. │   │   │   ├── gaac.py
  107. │   │   │   ├── __init__.py
  108. │   │   │   ├── kmeans.py
  109. │   │   │   ├── __pycache__
  110. │   │   │   │   ├── api.cpython-37.pyc
  111. │   │   │   │   ├── em.cpython-37.pyc
  112. │   │   │   │   ├── gaac.cpython-37.pyc
  113. │   │   │   │   ├── __init__.cpython-37.pyc
  114. │   │   │   │   ├── kmeans.cpython-37.pyc
  115. │   │   │   │   └── util.cpython-37.pyc
  116. │   │   │   └── util.py
  117. │   │   ├── collections.py
  118. │   │   ├── collocations.py
  119. │   │   ├── compat.py
  120. │   │   ├── corpus
  121. │   │   │   ├── europarl_raw.py
  122. │   │   │   ├── __init__.py
  123. │   │   │   ├── __pycache__
  124. │   │   │   │   ├── europarl_raw.cpython-37.pyc
  125. │   │   │   │   ├── __init__.cpython-37.pyc
  126. │   │   │   │   └── util.cpython-37.pyc
  127. │   │   │   ├── reader
  128. │   │   │   │   ├── aligned.py
  129. │   │   │   │   ├── api.py
  130. │   │   │   │   ├── bnc.py
  131. │   │   │   │   ├── bracket_parse.py
  132. │   │   │   │   ├── categorized_sents.py
  133. │   │   │   │   ├── chasen.py
  134. │   │   │   │   ├── childes.py
  135. │   │   │   │   ├── chunked.py
  136. │   │   │   │   ├── cmudict.py
  137. │   │   │   │   ├── comparative_sents.py
  138. │   │   │   │   ├── conll.py
  139. │   │   │   │   ├── crubadan.py
  140. │   │   │   │   ├── dependency.py
  141. │   │   │   │   ├── framenet.py
  142. │   │   │   │   ├── ieer.py
  143. │   │   │   │   ├── indian.py
  144. │   │   │   │   ├── __init__.py
  145. │   │   │   │   ├── ipipan.py
  146. │   │   │   │   ├── knbc.py
  147. │   │   │   │   ├── lin.py
  148. │   │   │   │   ├── mte.py
  149. │   │   │   │   ├── nkjp.py
  150. │   │   │   │   ├── nombank.py
  151. │   │   │   │   ├── nps_chat.py
  152. │   │   │   │   ├── opinion_lexicon.py
  153. │   │   │   │   ├── panlex_lite.py
  154. │   │   │   │   ├── panlex_swadesh.py
  155. │   │   │   │   ├── pl196x.py
  156. │   │   │   │   ├── plaintext.py
  157. │   │   │   │   ├── ppattach.py
  158. │   │   │   │   ├── propbank.py
  159. │   │   │   │   ├── pros_cons.py
  160. │   │   │   │   ├── __pycache__
  161. │   │   │   │   │   ├── aligned.cpython-37.pyc
  162. │   │   │   │   │   ├── api.cpython-37.pyc
  163. │   │   │   │   │   ├── bnc.cpython-37.pyc
  164. │   │   │   │   │   ├── bracket_parse.cpython-37.pyc
  165. │   │   │   │   │   ├── categorized_sents.cpython-37.pyc
  166. │   │   │   │   │   ├── chasen.cpython-37.pyc
  167. │   │   │   │   │   ├── childes.cpython-37.pyc
  168. │   │   │   │   │   ├── chunked.cpython-37.pyc
  169. │   │   │   │   │   ├── cmudict.cpython-37.pyc
  170. │   │   │   │   │   ├── comparative_sents.cpython-37.pyc
  171. │   │   │   │   │   ├── conll.cpython-37.pyc
  172. │   │   │   │   │   ├── crubadan.cpython-37.pyc
  173. │   │   │   │   │   ├── dependency.cpython-37.pyc
  174. │   │   │   │   │   ├── framenet.cpython-37.pyc
  175. │   │   │   │   │   ├── ieer.cpython-37.pyc
  176. │   │   │   │   │   ├── indian.cpython-37.pyc
  177. │   │   │   │   │   ├── __init__.cpython-37.pyc
  178. │   │   │   │   │   ├── ipipan.cpython-37.pyc
  179. │   │   │   │   │   ├── knbc.cpython-37.pyc
  180. │   │   │   │   │   ├── lin.cpython-37.pyc
  181. │   │   │   │   │   ├── mte.cpython-37.pyc
  182. │   │   │   │   │   ├── nkjp.cpython-37.pyc
  183. │   │   │   │   │   ├── nombank.cpython-37.pyc
  184. │   │   │   │   │   ├── nps_chat.cpython-37.pyc
  185. │   │   │   │   │   ├── opinion_lexicon.cpython-37.pyc
  186. │   │   │   │   │   ├── panlex_lite.cpython-37.pyc
  187. │   │   │   │   │   ├── panlex_swadesh.cpython-37.pyc
  188. │   │   │   │   │   ├── pl196x.cpython-37.pyc
  189. │   │   │   │   │   ├── plaintext.cpython-37.pyc
  190. │   │   │   │   │   ├── ppattach.cpython-37.pyc
  191. │   │   │   │   │   ├── propbank.cpython-37.pyc
  192. │   │   │   │   │   ├── pros_cons.cpython-37.pyc
  193. │   │   │   │   │   ├── reviews.cpython-37.pyc
  194. │   │   │   │   │   ├── rte.cpython-37.pyc
  195. │   │   │   │   │   ├── semcor.cpython-37.pyc
  196. │   │   │   │   │   ├── senseval.cpython-37.pyc
  197. │   │   │   │   │   ├── sentiwordnet.cpython-37.pyc
  198. │   │   │   │   │   ├── sinica_treebank.cpython-37.pyc
  199. │   │   │   │   │   ├── string_category.cpython-37.pyc
  200. │   │   │   │   │   ├── switchboard.cpython-37.pyc
  201. │   │   │   │   │   ├── tagged.cpython-37.pyc
  202. │   │   │   │   │   ├── timit.cpython-37.pyc
  203. │   │   │   │   │   ├── toolbox.cpython-37.pyc
  204. │   │   │   │   │   ├── twitter.cpython-37.pyc
  205. │   │   │   │   │   ├── udhr.cpython-37.pyc
  206. │   │   │   │   │   ├── util.cpython-37.pyc
  207. │   │   │   │   │   ├── verbnet.cpython-37.pyc
  208. │   │   │   │   │   ├── wordlist.cpython-37.pyc
  209. │   │   │   │   │   ├── wordnet.cpython-37.pyc
  210. │   │   │   │   │   ├── xmldocs.cpython-37.pyc
  211. │   │   │   │   │   └── ycoe.cpython-37.pyc
  212. │   │   │   │   ├── reviews.py
  213. │   │   │   │   ├── rte.py
  214. │   │   │   │   ├── semcor.py
  215. │   │   │   │   ├── senseval.py
  216. │   │   │   │   ├── sentiwordnet.py
  217. │   │   │   │   ├── sinica_treebank.py
  218. │   │   │   │   ├── string_category.py
  219. │   │   │   │   ├── switchboard.py
  220. │   │   │   │   ├── tagged.py
  221. │   │   │   │   ├── timit.py
  222. │   │   │   │   ├── toolbox.py
  223. │   │   │   │   ├── twitter.py
  224. │   │   │   │   ├── udhr.py
  225. │   │   │   │   ├── util.py
  226. │   │   │   │   ├── verbnet.py
  227. │   │   │   │   ├── wordlist.py
  228. │   │   │   │   ├── wordnet.py
  229. │   │   │   │   ├── xmldocs.py
  230. │   │   │   │   └── ycoe.py
  231. │   │   │   └── util.py
  232. │   │   ├── data.py
  233. │   │   ├── decorators.py
  234. │   │   ├── downloader.py
  235. │   │   ├── draw
  236. │   │   │   ├── cfg.py
  237. │   │   │   ├── dispersion.py
  238. │   │   │   ├── __init__.py
  239. │   │   │   ├── __pycache__
  240. │   │   │   │   ├── cfg.cpython-37.pyc
  241. │   │   │   │   ├── dispersion.cpython-37.pyc
  242. │   │   │   │   ├── __init__.cpython-37.pyc
  243. │   │   │   │   ├── table.cpython-37.pyc
  244. │   │   │   │   ├── tree.cpython-37.pyc
  245. │   │   │   │   └── util.cpython-37.pyc
  246. │   │   │   ├── table.py
  247. │   │   │   ├── tree.py
  248. │   │   │   └── util.py
  249. │   │   ├── featstruct.py
  250. │   │   ├── grammar.py
  251. │   │   ├── help.py
  252. │   │   ├── inference
  253. │   │   │   ├── api.py
  254. │   │   │   ├── discourse.py
  255. │   │   │   ├── __init__.py
  256. │   │   │   ├── mace.py
  257. │   │   │   ├── nonmonotonic.py
  258. │   │   │   ├── prover9.py
  259. │   │   │   ├── __pycache__
  260. │   │   │   │   ├── api.cpython-37.pyc
  261. │   │   │   │   ├── discourse.cpython-37.pyc
  262. │   │   │   │   ├── __init__.cpython-37.pyc
  263. │   │   │   │   ├── mace.cpython-37.pyc
  264. │   │   │   │   ├── nonmonotonic.cpython-37.pyc
  265. │   │   │   │   ├── prover9.cpython-37.pyc
  266. │   │   │   │   ├── resolution.cpython-37.pyc
  267. │   │   │   │   └── tableau.cpython-37.pyc
  268. │   │   │   ├── resolution.py
  269. │   │   │   └── tableau.py
  270. │   │   ├── __init__.py
  271. │   │   ├── internals.py
  272. │   │   ├── jsontags.py
  273. │   │   ├── lazyimport.py
  274. │   │   ├── lm
  275. │   │   │   ├── api.py
  276. │   │   │   ├── counter.py
  277. │   │   │   ├── __init__.py
  278. │   │   │   ├── models.py
  279. │   │   │   ├── preprocessing.py
  280. │   │   │   ├── __pycache__
  281. │   │   │   │   ├── api.cpython-37.pyc
  282. │   │   │   │   ├── counter.cpython-37.pyc
  283. │   │   │   │   ├── __init__.cpython-37.pyc
  284. │   │   │   │   ├── models.cpython-37.pyc
  285. │   │   │   │   ├── preprocessing.cpython-37.pyc
  286. │   │   │   │   ├── smoothing.cpython-37.pyc
  287. │   │   │   │   ├── util.cpython-37.pyc
  288. │   │   │   │   └── vocabulary.cpython-37.pyc
  289. │   │   │   ├── smoothing.py
  290. │   │   │   ├── util.py
  291. │   │   │   └── vocabulary.py
  292. │   │   ├── metrics
  293. │   │   │   ├── agreement.py
  294. │   │   │   ├── aline.py
  295. │   │   │   ├── association.py
  296. │   │   │   ├── confusionmatrix.py
  297. │   │   │   ├── distance.py
  298. │   │   │   ├── __init__.py
  299. │   │   │   ├── paice.py
  300. │   │   │   ├── __pycache__
  301. │   │   │   │   ├── agreement.cpython-37.pyc
  302. │   │   │   │   ├── aline.cpython-37.pyc
  303. │   │   │   │   ├── association.cpython-37.pyc
  304. │   │   │   │   ├── confusionmatrix.cpython-37.pyc
  305. │   │   │   │   ├── distance.cpython-37.pyc
  306. │   │   │   │   ├── __init__.cpython-37.pyc
  307. │   │   │   │   ├── paice.cpython-37.pyc
  308. │   │   │   │   ├── scores.cpython-37.pyc
  309. │   │   │   │   ├── segmentation.cpython-37.pyc
  310. │   │   │   │   └── spearman.cpython-37.pyc
  311. │   │   │   ├── scores.py
  312. │   │   │   ├── segmentation.py
  313. │   │   │   └── spearman.py
  314. │   │   ├── misc
  315. │   │   │   ├── babelfish.py
  316. │   │   │   ├── chomsky.py
  317. │   │   │   ├── __init__.py
  318. │   │   │   ├── minimalset.py
  319. │   │   │   ├── __pycache__
  320. │   │   │   │   ├── babelfish.cpython-37.pyc
  321. │   │   │   │   ├── chomsky.cpython-37.pyc
  322. │   │   │   │   ├── __init__.cpython-37.pyc
  323. │   │   │   │   ├── minimalset.cpython-37.pyc
  324. │   │   │   │   ├── sort.cpython-37.pyc
  325. │   │   │   │   └── wordfinder.cpython-37.pyc
  326. │   │   │   ├── sort.py
  327. │   │   │   └── wordfinder.py
  328. │   │   ├── parse
  329. │   │   │   ├── api.py
  330. │   │   │   ├── bllip.py
  331. │   │   │   ├── chart.py
  332. │   │   │   ├── corenlp.py
  333. │   │   │   ├── dependencygraph.py
  334. │   │   │   ├── earleychart.py
  335. │   │   │   ├── evaluate.py
  336. │   │   │   ├── featurechart.py
  337. │   │   │   ├── generate.py
  338. │   │   │   ├── __init__.py
  339. │   │   │   ├── malt.py
  340. │   │   │   ├── nonprojectivedependencyparser.py
  341. │   │   │   ├── pchart.py
  342. │   │   │   ├── projectivedependencyparser.py
  343. │   │   │   ├── __pycache__
  344. │   │   │   │   ├── api.cpython-37.pyc
  345. │   │   │   │   ├── bllip.cpython-37.pyc
  346. │   │   │   │   ├── chart.cpython-37.pyc
  347. │   │   │   │   ├── corenlp.cpython-37.pyc
  348. │   │   │   │   ├── dependencygraph.cpython-37.pyc
  349. │   │   │   │   ├── earleychart.cpython-37.pyc
  350. │   │   │   │   ├── evaluate.cpython-37.pyc
  351. │   │   │   │   ├── featurechart.cpython-37.pyc
  352. │   │   │   │   ├── generate.cpython-37.pyc
  353. │   │   │   │   ├── __init__.cpython-37.pyc
  354. │   │   │   │   ├── malt.cpython-37.pyc
  355. │   │   │   │   ├── nonprojectivedependencyparser.cpython-37.pyc
  356. │   │   │   │   ├── pchart.cpython-37.pyc
  357. │   │   │   │   ├── projectivedependencyparser.cpython-37.pyc
  358. │   │   │   │   ├── recursivedescent.cpython-37.pyc
  359. │   │   │   │   ├── shiftreduce.cpython-37.pyc
  360. │   │   │   │   ├── stanford.cpython-37.pyc
  361. │   │   │   │   ├── transitionparser.cpython-37.pyc
  362. │   │   │   │   ├── util.cpython-37.pyc
  363. │   │   │   │   └── viterbi.cpython-37.pyc
  364. │   │   │   ├── recursivedescent.py
  365. │   │   │   ├── shiftreduce.py
  366. │   │   │   ├── stanford.py
  367. │   │   │   ├── transitionparser.py
  368. │   │   │   ├── util.py
  369. │   │   │   └── viterbi.py
  370. │   │   ├── probability.py
  371. │   │   ├── __pycache__
  372. │   │   │   ├── book.cpython-37.pyc
  373. │   │   │   ├── collections.cpython-37.pyc
  374. │   │   │   ├── collocations.cpython-37.pyc
  375. │   │   │   ├── compat.cpython-37.pyc
  376. │   │   │   ├── data.cpython-37.pyc
  377. │   │   │   ├── decorators.cpython-37.pyc
  378. │   │   │   ├── downloader.cpython-37.pyc
  379. │   │   │   ├── featstruct.cpython-37.pyc
  380. │   │   │   ├── grammar.cpython-37.pyc
  381. │   │   │   ├── help.cpython-37.pyc
  382. │   │   │   ├── __init__.cpython-37.pyc
  383. │   │   │   ├── internals.cpython-37.pyc
  384. │   │   │   ├── jsontags.cpython-37.pyc
  385. │   │   │   ├── lazyimport.cpython-37.pyc
  386. │   │   │   ├── probability.cpython-37.pyc
  387. │   │   │   ├── text.cpython-37.pyc
  388. │   │   │   ├── tgrep.cpython-37.pyc
  389. │   │   │   ├── toolbox.cpython-37.pyc
  390. │   │   │   ├── tree.cpython-37.pyc
  391. │   │   │   ├── treeprettyprinter.cpython-37.pyc
  392. │   │   │   ├── treetransforms.cpython-37.pyc
  393. │   │   │   ├── util.cpython-37.pyc
  394. │   │   │   └── wsd.cpython-37.pyc
  395. │   │   ├── sem
  396. │   │   │   ├── boxer.py
  397. │   │   │   ├── chat80.py
  398. │   │   │   ├── cooper_storage.py
  399. │   │   │   ├── drt_glue_demo.py
  400. │   │   │   ├── drt.py
  401. │   │   │   ├── evaluate.py
  402. │   │   │   ├── glue.py
  403. │   │   │   ├── hole.py
  404. │   │   │   ├── __init__.py
  405. │   │   │   ├── lfg.py
  406. │   │   │   ├── linearlogic.py
  407. │   │   │   ├── logic.py
  408. │   │   │   ├── __pycache__
  409. │   │   │   │   ├── boxer.cpython-37.pyc
  410. │   │   │   │   ├── chat80.cpython-37.pyc
  411. │   │   │   │   ├── cooper_storage.cpython-37.pyc
  412. │   │   │   │   ├── drt.cpython-37.pyc
  413. │   │   │   │   ├── drt_glue_demo.cpython-37.pyc
  414. │   │   │   │   ├── evaluate.cpython-37.pyc
  415. │   │   │   │   ├── glue.cpython-37.pyc
  416. │   │   │   │   ├── hole.cpython-37.pyc
  417. │   │   │   │   ├── __init__.cpython-37.pyc
  418. │   │   │   │   ├── lfg.cpython-37.pyc
  419. │   │   │   │   ├── linearlogic.cpython-37.pyc
  420. │   │   │   │   ├── logic.cpython-37.pyc
  421. │   │   │   │   ├── relextract.cpython-37.pyc
  422. │   │   │   │   ├── skolemize.cpython-37.pyc
  423. │   │   │   │   └── util.cpython-37.pyc
  424. │   │   │   ├── relextract.py
  425. │   │   │   ├── skolemize.py
  426. │   │   │   └── util.py
  427. │   │   ├── sentiment
  428. │   │   │   ├── __init__.py
  429. │   │   │   ├── __pycache__
  430. │   │   │   │   ├── __init__.cpython-37.pyc
  431. │   │   │   │   ├── sentiment_analyzer.cpython-37.pyc
  432. │   │   │   │   ├── util.cpython-37.pyc
  433. │   │   │   │   └── vader.cpython-37.pyc
  434. │   │   │   ├── sentiment_analyzer.py
  435. │   │   │   ├── util.py
  436. │   │   │   └── vader.py
  437. │   │   ├── stem
  438. │   │   │   ├── api.py
  439. │   │   │   ├── arlstem.py
  440. │   │   │   ├── cistem.py
  441. │   │   │   ├── __init__.py
  442. │   │   │   ├── isri.py
  443. │   │   │   ├── lancaster.py
  444. │   │   │   ├── porter.py
  445. │   │   │   ├── __pycache__
  446. │   │   │   │   ├── api.cpython-37.pyc
  447. │   │   │   │   ├── arlstem.cpython-37.pyc
  448. │   │   │   │   ├── cistem.cpython-37.pyc
  449. │   │   │   │   ├── __init__.cpython-37.pyc
  450. │   │   │   │   ├── isri.cpython-37.pyc
  451. │   │   │   │   ├── lancaster.cpython-37.pyc
  452. │   │   │   │   ├── porter.cpython-37.pyc
  453. │   │   │   │   ├── regexp.cpython-37.pyc
  454. │   │   │   │   ├── rslp.cpython-37.pyc
  455. │   │   │   │   ├── snowball.cpython-37.pyc
  456. │   │   │   │   ├── util.cpython-37.pyc
  457. │   │   │   │   └── wordnet.cpython-37.pyc
  458. │   │   │   ├── regexp.py
  459. │   │   │   ├── rslp.py
  460. │   │   │   ├── snowball.py
  461. │   │   │   ├── util.py
  462. │   │   │   └── wordnet.py
  463. │   │   ├── tag
  464. │   │   │   ├── api.py
  465. │   │   │   ├── brill.py
  466. │   │   │   ├── brill_trainer.py
  467. │   │   │   ├── crf.py
  468. │   │   │   ├── hmm.py
  469. │   │   │   ├── hunpos.py
  470. │   │   │   ├── __init__.py
  471. │   │   │   ├── mapping.py
  472. │   │   │   ├── perceptron.py
  473. │   │   │   ├── __pycache__
  474. │   │   │   │   ├── api.cpython-37.pyc
  475. │   │   │   │   ├── brill.cpython-37.pyc
  476. │   │   │   │   ├── brill_trainer.cpython-37.pyc
  477. │   │   │   │   ├── crf.cpython-37.pyc
  478. │   │   │   │   ├── hmm.cpython-37.pyc
  479. │   │   │   │   ├── hunpos.cpython-37.pyc
  480. │   │   │   │   ├── __init__.cpython-37.pyc
  481. │   │   │   │   ├── mapping.cpython-37.pyc
  482. │   │   │   │   ├── perceptron.cpython-37.pyc
  483. │   │   │   │   ├── senna.cpython-37.pyc
  484. │   │   │   │   ├── sequential.cpython-37.pyc
  485. │   │   │   │   ├── stanford.cpython-37.pyc
  486. │   │   │   │   ├── tnt.cpython-37.pyc
  487. │   │   │   │   └── util.cpython-37.pyc
  488. │   │   │   ├── senna.py
  489. │   │   │   ├── sequential.py
  490. │   │   │   ├── stanford.py
  491. │   │   │   ├── tnt.py
  492. │   │   │   └── util.py
  493. │   │   ├── tbl
  494. │   │   │   ├── api.py
  495. │   │   │   ├── demo.py
  496. │   │   │   ├── erroranalysis.py
  497. │   │   │   ├── feature.py
  498. │   │   │   ├── __init__.py
  499. │   │   │   ├── __pycache__
  500. │   │   │   │   ├── api.cpython-37.pyc
  501. │   │   │   │   ├── demo.cpython-37.pyc
  502. │   │   │   │   ├── erroranalysis.cpython-37.pyc
  503. │   │   │   │   ├── feature.cpython-37.pyc
  504. │   │   │   │   ├── __init__.cpython-37.pyc
  505. │   │   │   │   ├── rule.cpython-37.pyc
  506. │   │   │   │   └── template.cpython-37.pyc
  507. │   │   │   ├── rule.py
  508. │   │   │   └── template.py
  509. │   │   ├── test
  510. │   │   │   ├── all.py
  511. │   │   │   ├── bleu.doctest
  512. │   │   │   ├── bnc.doctest
  513. │   │   │   ├── ccg.doctest
  514. │   │   │   ├── ccg_semantics.doctest
  515. │   │   │   ├── chat80.doctest
  516. │   │   │   ├── childes.doctest
  517. │   │   │   ├── childes_fixt.py
  518. │   │   │   ├── chunk.doctest
  519. │   │   │   ├── classify.doctest
  520. │   │   │   ├── classify_fixt.py
  521. │   │   │   ├── collections.doctest
  522. │   │   │   ├── collocations.doctest
  523. │   │   │   ├── compat.doctest
  524. │   │   │   ├── compat_fixt.py
  525. │   │   │   ├── concordance.doctest
  526. │   │   │   ├── corpus.doctest
  527. │   │   │   ├── corpus_fixt.py
  528. │   │   │   ├── crubadan.doctest
  529. │   │   │   ├── data.doctest
  530. │   │   │   ├── dependency.doctest
  531. │   │   │   ├── discourse.doctest
  532. │   │   │   ├── discourse_fixt.py
  533. │   │   │   ├── doctest_nose_plugin.py
  534. │   │   │   ├── drt.doctest
  535. │   │   │   ├── featgram.doctest
  536. │   │   │   ├── featstruct.doctest
  537. │   │   │   ├── framenet.doctest
  538. │   │   │   ├── generate.doctest
  539. │   │   │   ├── gensim.doctest
  540. │   │   │   ├── gensim_fixt.py
  541. │   │   │   ├── gluesemantics.doctest
  542. │   │   │   ├── gluesemantics_malt.doctest
  543. │   │   │   ├── gluesemantics_malt_fixt.py
  544. │   │   │   ├── grammar.doctest
  545. │   │   │   ├── grammartestsuites.doctest
  546. │   │   │   ├── index.doctest
  547. │   │   │   ├── inference.doctest
  548. │   │   │   ├── inference_fixt.py
  549. │   │   │   ├── __init__.py
  550. │   │   │   ├── internals.doctest
  551. │   │   │   ├── japanese.doctest
  552. │   │   │   ├── lm.doctest
  553. │   │   │   ├── logic.doctest
  554. │   │   │   ├── meteor.doctest
  555. │   │   │   ├── metrics.doctest
  556. │   │   │   ├── misc.doctest
  557. │   │   │   ├── nonmonotonic.doctest
  558. │   │   │   ├── nonmonotonic_fixt.py
  559. │   │   │   ├── paice.doctest
  560. │   │   │   ├── parse.doctest
  561. │   │   │   ├── portuguese_en.doctest
  562. │   │   │   ├── portuguese_en_fixt.py
  563. │   │   │   ├── probability.doctest
  564. │   │   │   ├── probability_fixt.py
  565. │   │   │   ├── propbank.doctest
  566. │   │   │   ├── __pycache__
  567. │   │   │   │   ├── all.cpython-37.pyc
  568. │   │   │   │   ├── childes_fixt.cpython-37.pyc
  569. │   │   │   │   ├── classify_fixt.cpython-37.pyc
  570. │   │   │   │   ├── compat_fixt.cpython-37.pyc
  571. │   │   │   │   ├── corpus_fixt.cpython-37.pyc
  572. │   │   │   │   ├── discourse_fixt.cpython-37.pyc
  573. │   │   │   │   ├── doctest_nose_plugin.cpython-37.pyc
  574. │   │   │   │   ├── gensim_fixt.cpython-37.pyc
  575. │   │   │   │   ├── gluesemantics_malt_fixt.cpython-37.pyc
  576. │   │   │   │   ├── inference_fixt.cpython-37.pyc
  577. │   │   │   │   ├── __init__.cpython-37.pyc
  578. │   │   │   │   ├── nonmonotonic_fixt.cpython-37.pyc
  579. │   │   │   │   ├── portuguese_en_fixt.cpython-37.pyc
  580. │   │   │   │   ├── probability_fixt.cpython-37.pyc
  581. │   │   │   │   ├── runtests.cpython-37.pyc
  582. │   │   │   │   ├── segmentation_fixt.cpython-37.pyc
  583. │   │   │   │   ├── semantics_fixt.cpython-37.pyc
  584. │   │   │   │   ├── translate_fixt.cpython-37.pyc
  585. │   │   │   │   └── wordnet_fixt.cpython-37.pyc
  586. │   │   │   ├── relextract.doctest
  587. │   │   │   ├── resolution.doctest
  588. │   │   │   ├── runtests.py
  589. │   │   │   ├── segmentation_fixt.py
  590. │   │   │   ├── semantics.doctest
  591. │   │   │   ├── semantics_fixt.py
  592. │   │   │   ├── sentiment.doctest
  593. │   │   │   ├── sentiwordnet.doctest
  594. │   │   │   ├── simple.doctest
  595. │   │   │   ├── stem.doctest
  596. │   │   │   ├── tag.doctest
  597. │   │   │   ├── tokenize.doctest
  598. │   │   │   ├── toolbox.doctest
  599. │   │   │   ├── translate.doctest
  600. │   │   │   ├── translate_fixt.py
  601. │   │   │   ├── tree.doctest
  602. │   │   │   ├── treeprettyprinter.doctest
  603. │   │   │   ├── treetransforms.doctest
  604. │   │   │   ├── unit
  605. │   │   │   │   ├── __init__.py
  606. │   │   │   │   ├── lm
  607. │   │   │   │   │   ├── __init__.py
  608. │   │   │   │   │   ├── __pycache__
  609. │   │   │   │   │   │   ├── __init__.cpython-37.pyc
  610. │   │   │   │   │   │   ├── test_counter.cpython-37.pyc
  611. │   │   │   │   │   │   ├── test_models.cpython-37.pyc
  612. │   │   │   │   │   │   ├── test_preprocessing.cpython-37.pyc
  613. │   │   │   │   │   │   └── test_vocabulary.cpython-37.pyc
  614. │   │   │   │   │   ├── test_counter.py
  615. │   │   │   │   │   ├── test_models.py
  616. │   │   │   │   │   ├── test_preprocessing.py
  617. │   │   │   │   │   └── test_vocabulary.py
  618. │   │   │   │   ├── __pycache__
  619. │   │   │   │   │   ├── __init__.cpython-37.pyc
  620. │   │   │   │   │   ├── test_2x_compat.cpython-37.pyc
  621. │   │   │   │   │   ├── test_aline.cpython-37.pyc
  622. │   │   │   │   │   ├── test_brill.cpython-37.pyc
  623. │   │   │   │   │   ├── test_cfd_mutation.cpython-37.pyc
  624. │   │   │   │   │   ├── test_cfg2chomsky.cpython-37.pyc
  625. │   │   │   │   │   ├── test_chunk.cpython-37.pyc
  626. │   │   │   │   │   ├── test_classify.cpython-37.pyc
  627. │   │   │   │   │   ├── test_collocations.cpython-37.pyc
  628. │   │   │   │   │   ├── test_concordance.cpython-37.pyc
  629. │   │   │   │   │   ├── test_corenlp.cpython-37.pyc
  630. │   │   │   │   │   ├── test_corpora.cpython-37.pyc
  631. │   │   │   │   │   ├── test_corpus_views.cpython-37.pyc
  632. │   │   │   │   │   ├── test_data.cpython-37.pyc
  633. │   │   │   │   │   ├── test_disagreement.cpython-37.pyc
  634. │   │   │   │   │   ├── test_hmm.cpython-37.pyc
  635. │   │   │   │   │   ├── test_json2csv_corpus.cpython-37.pyc
  636. │   │   │   │   │   ├── test_naivebayes.cpython-37.pyc
  637. │   │   │   │   │   ├── test_nombank.cpython-37.pyc
  638. │   │   │   │   │   ├── test_pos_tag.cpython-37.pyc
  639. │   │   │   │   │   ├── test_rte_classify.cpython-37.pyc
  640. │   │   │   │   │   ├── test_seekable_unicode_stream_reader.cpython-37.pyc
  641. │   │   │   │   │   ├── test_senna.cpython-37.pyc
  642. │   │   │   │   │   ├── test_stem.cpython-37.pyc
  643. │   │   │   │   │   ├── test_tag.cpython-37.pyc
  644. │   │   │   │   │   ├── test_tgrep.cpython-37.pyc
  645. │   │   │   │   │   ├── test_tokenize.cpython-37.pyc
  646. │   │   │   │   │   ├── test_twitter_auth.cpython-37.pyc
  647. │   │   │   │   │   ├── test_wordnet.cpython-37.pyc
  648. │   │   │   │   │   └── utils.cpython-37.pyc
  649. │   │   │   │   ├── test_2x_compat.py
  650. │   │   │   │   ├── test_aline.py
  651. │   │   │   │   ├── test_brill.py
  652. │   │   │   │   ├── test_cfd_mutation.py
  653. │   │   │   │   ├── test_cfg2chomsky.py
  654. │   │   │   │   ├── test_chunk.py
  655. │   │   │   │   ├── test_classify.py
  656. │   │   │   │   ├── test_collocations.py
  657. │   │   │   │   ├── test_concordance.py
  658. │   │   │   │   ├── test_corenlp.py
  659. │   │   │   │   ├── test_corpora.py
  660. │   │   │   │   ├── test_corpus_views.py
  661. │   │   │   │   ├── test_data.py
  662. │   │   │   │   ├── test_disagreement.py
  663. │   │   │   │   ├── test_hmm.py
  664. │   │   │   │   ├── test_json2csv_corpus.py
  665. │   │   │   │   ├── test_naivebayes.py
  666. │   │   │   │   ├── test_nombank.py
  667. │   │   │   │   ├── test_pos_tag.py
  668. │   │   │   │   ├── test_rte_classify.py
  669. │   │   │   │   ├── test_seekable_unicode_stream_reader.py
  670. │   │   │   │   ├── test_senna.py
  671. │   │   │   │   ├── test_stem.py
  672. │   │   │   │   ├── test_tag.py
  673. │   │   │   │   ├── test_tgrep.py
  674. │   │   │   │   ├── test_tokenize.py
  675. │   │   │   │   ├── test_twitter_auth.py
  676. │   │   │   │   ├── test_wordnet.py
  677. │   │   │   │   ├── translate
  678. │   │   │   │   │   ├── __init__.py
  679. │   │   │   │   │   ├── __pycache__
  680. │   │   │   │   │   │   ├── __init__.cpython-37.pyc
  681. │   │   │   │   │   │   ├── test_bleu.cpython-37.pyc
  682. │   │   │   │   │   │   ├── test_gdfa.cpython-37.pyc
  683. │   │   │   │   │   │   ├── test_ibm1.cpython-37.pyc
  684. │   │   │   │   │   │   ├── test_ibm2.cpython-37.pyc
  685. │   │   │   │   │   │   ├── test_ibm3.cpython-37.pyc
  686. │   │   │   │   │   │   ├── test_ibm4.cpython-37.pyc
  687. │   │   │   │   │   │   ├── test_ibm5.cpython-37.pyc
  688. │   │   │   │   │   │   ├── test_ibm_model.cpython-37.pyc
  689. │   │   │   │   │   │   ├── test_nist.cpython-37.pyc
  690. │   │   │   │   │   │   └── test_stack_decoder.cpython-37.pyc
  691. │   │   │   │   │   ├── test_bleu.py
  692. │   │   │   │   │   ├── test_gdfa.py
  693. │   │   │   │   │   ├── test_ibm1.py
  694. │   │   │   │   │   ├── test_ibm2.py
  695. │   │   │   │   │   ├── test_ibm3.py
  696. │   │   │   │   │   ├── test_ibm4.py
  697. │   │   │   │   │   ├── test_ibm5.py
  698. │   │   │   │   │   ├── test_ibm_model.py
  699. │   │   │   │   │   ├── test_nist.py
  700. │   │   │   │   │   └── test_stack_decoder.py
  701. │   │   │   │   └── utils.py
  702. │   │   │   ├── util.doctest
  703. │   │   │   ├── wordnet.doctest
  704. │   │   │   ├── wordnet_fixt.py
  705. │   │   │   ├── wordnet_lch.doctest
  706. │   │   │   └── wsd.doctest
  707. │   │   ├── text.py
  708. │   │   ├── tgrep.py
  709. │   │   ├── tokenize
  710. │   │   │   ├── api.py
  711. │   │   │   ├── casual.py
  712. │   │   │   ├── __init__.py
  713. │   │   │   ├── mwe.py
  714. │   │   │   ├── nist.py
  715. │   │   │   ├── punkt.py
  716. │   │   │   ├── __pycache__
  717. │   │   │   │   ├── api.cpython-37.pyc
  718. │   │   │   │   ├── casual.cpython-37.pyc
  719. │   │   │   │   ├── __init__.cpython-37.pyc
  720. │   │   │   │   ├── mwe.cpython-37.pyc
  721. │   │   │   │   ├── nist.cpython-37.pyc
  722. │   │   │   │   ├── punkt.cpython-37.pyc
  723. │   │   │   │   ├── regexp.cpython-37.pyc
  724. │   │   │   │   ├── repp.cpython-37.pyc
  725. │   │   │   │   ├── sexpr.cpython-37.pyc
  726. │   │   │   │   ├── simple.cpython-37.pyc
  727. │   │   │   │   ├── sonority_sequencing.cpython-37.pyc
  728. │   │   │   │   ├── stanford.cpython-37.pyc
  729. │   │   │   │   ├── stanford_segmenter.cpython-37.pyc
  730. │   │   │   │   ├── texttiling.cpython-37.pyc
  731. │   │   │   │   ├── toktok.cpython-37.pyc
  732. │   │   │   │   ├── treebank.cpython-37.pyc
  733. │   │   │   │   └── util.cpython-37.pyc
  734. │   │   │   ├── regexp.py
  735. │   │   │   ├── repp.py
  736. │   │   │   ├── sexpr.py
  737. │   │   │   ├── simple.py
  738. │   │   │   ├── sonority_sequencing.py
  739. │   │   │   ├── stanford.py
  740. │   │   │   ├── stanford_segmenter.py
  741. │   │   │   ├── texttiling.py
  742. │   │   │   ├── toktok.py
  743. │   │   │   ├── treebank.py
  744. │   │   │   └── util.py
  745. │   │   ├── toolbox.py
  746. │   │   ├── translate
  747. │   │   │   ├── api.py
  748. │   │   │   ├── bleu_score.py
  749. │   │   │   ├── chrf_score.py
  750. │   │   │   ├── gale_church.py
  751. │   │   │   ├── gdfa.py
  752. │   │   │   ├── gleu_score.py
  753. │   │   │   ├── ibm1.py
  754. │   │   │   ├── ibm2.py
  755. │   │   │   ├── ibm3.py
  756. │   │   │   ├── ibm4.py
  757. │   │   │   ├── ibm5.py
  758. │   │   │   ├── ibm_model.py
  759. │   │   │   ├── __init__.py
  760. │   │   │   ├── meteor_score.py
  761. │   │   │   ├── metrics.py
  762. │   │   │   ├── nist_score.py
  763. │   │   │   ├── phrase_based.py
  764. │   │   │   ├── __pycache__
  765. │   │   │   │   ├── api.cpython-37.pyc
  766. │   │   │   │   ├── bleu_score.cpython-37.pyc
  767. │   │   │   │   ├── chrf_score.cpython-37.pyc
  768. │   │   │   │   ├── gale_church.cpython-37.pyc
  769. │   │   │   │   ├── gdfa.cpython-37.pyc
  770. │   │   │   │   ├── gleu_score.cpython-37.pyc
  771. │   │   │   │   ├── ibm1.cpython-37.pyc
  772. │   │   │   │   ├── ibm2.cpython-37.pyc
  773. │   │   │   │   ├── ibm3.cpython-37.pyc
  774. │   │   │   │   ├── ibm4.cpython-37.pyc
  775. │   │   │   │   ├── ibm5.cpython-37.pyc
  776. │   │   │   │   ├── ibm_model.cpython-37.pyc
  777. │   │   │   │   ├── __init__.cpython-37.pyc
  778. │   │   │   │   ├── meteor_score.cpython-37.pyc
  779. │   │   │   │   ├── metrics.cpython-37.pyc
  780. │   │   │   │   ├── nist_score.cpython-37.pyc
  781. │   │   │   │   ├── phrase_based.cpython-37.pyc
  782. │   │   │   │   ├── ribes_score.cpython-37.pyc
  783. │   │   │   │   └── stack_decoder.cpython-37.pyc
  784. │   │   │   ├── ribes_score.py
  785. │   │   │   └── stack_decoder.py
  786. │   │   ├── treeprettyprinter.py
  787. │   │   ├── tree.py
  788. │   │   ├── treetransforms.py
  789. │   │   ├── twitter
  790. │   │   │   ├── api.py
  791. │   │   │   ├── common.py
  792. │   │   │   ├── __init__.py
  793. │   │   │   ├── __pycache__
  794. │   │   │   │   ├── api.cpython-37.pyc
  795. │   │   │   │   ├── common.cpython-37.pyc
  796. │   │   │   │   ├── __init__.cpython-37.pyc
  797. │   │   │   │   ├── twitterclient.cpython-37.pyc
  798. │   │   │   │   ├── twitter_demo.cpython-37.pyc
  799. │   │   │   │   └── util.cpython-37.pyc
  800. │   │   │   ├── twitterclient.py
  801. │   │   │   ├── twitter_demo.py
  802. │   │   │   └── util.py
  803. │   │   ├── util.py
  804. │   │   ├── VERSION
  805. │   │   └── wsd.py
  806. │   └── nltk-3.4.4.dist-info
  807. │   ├── INSTALLER
  808. │   ├── LICENSE.txt
  809. │   ├── METADATA
  810. │   ├── RECORD
  811. │   ├── top_level.txt
  812. │   └── WHEEL
  813. └── nix-support
  814. └── propagated-build-inputs
  815.  
  816. 59 directories, 754 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement