NLP with Python(NLTK)
fessigy
这个作者很懒,什么都没留下…
展开
-
NLTK3.2.4环境搭建
系统环境:win7 32位python:2.7.13,后改为3.6.1安装NLTK从网站下载:http://www.nltk.org/,完成后双击安装,但提示Python version -32 required, which was not found in the registry.从网上搜索到以下解决方案:新建文件D:\register.py,通过脚本建立原创 2017-06-08 16:31:36 · 1269 阅读 · 0 评论 -
近观Python: Texts as list of words
Listsaddlist1+list2appendlist1.append("words")Index原创 2017-06-15 18:51:24 · 334 阅读 · 0 评论 -
Computing with Language:Simple Statistics
Frequency Distributions//定义变量fdist1 = FreqDist(text1)//输出fdist1//重复最多的50个fdist1.most_common(50)//whale重复次数fdist1['whale']//累积频率图fdist1.plot(50,cumulative=True)//单频词fdist1.hapaxe原创 2017-06-22 16:09:12 · 424 阅读 · 0 评论 -
简单试水nltk
导入nltk.book后,即可调用(需要注意的是,每一次启动idle之后都需要import一次,因为import是导入进内存,具体还需要了解import的原理和机制,知识点:module)1.searching text//查找包含单词monstrous的上下文text1.concordance("monstrous")//查找上下文与monstrous相似的单词text1原创 2017-06-09 16:49:33 · 462 阅读 · 0 评论