【NLP】NLTK工具集使用

本文涉及的产品
云解析 DNS,旗舰版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
NLP自然语言处理_高级版,每接口累计50万次
简介: 关于nltk的下载还是很多坑的,如果直接import nltk和nltk.download()下载失败,可参考:(1)nltk安装失败:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。(2)直接下载github的nltk:https://github.com/nltk/nltk_data。我一开始就是一直报错For more information see:

一、Natural Language Toolkit

NLTK提供了多种语料库(Corpora)和词典(Lexicon)资源,如WordNet等,以及常用工具集,如分句、标记解析(Tokenization)、词干提取(Stemming)、词性标注(POS Taggin)和句法分析(Syntactic Parsing)等,用于英文文本数据处理。

关于nltk的下载还是很多坑的,如果直接import nltk和nltk.download()下载失败,可参考:

(1)nltk安装失败:由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。

(2)直接下载github的nltk:https://github.com/nltk/nltk_data。我一开始就是一直报错For more information see: https://www.nltk.org/data.html. Attempted to load tokenizers/punkt/english.pickle,然而nltk_data确实已经解压了还放在正确的路径中了还不行,尝试了几个办法后报错OSError: No such file or directory: 'D:\\anaconda1\\envs\\tensorflow\\lib\\nltk_data\\tokenizers\\punkt\\PY3\\english.pickle'发现木有PY3文件,加了个PY3文件夹后还是不行,最后直接去github上重新下载一个nltk的punkt包直接解压就行了。。。

(3)如果还是不行,就绝对路径吧sent_detector = nltk.data.load('D:\local\Anaconda3\Lib\site-packages//nltk-data//tokenizers/punkt/english.pickle'),狗头滑稽。

注意:

nltk包放在的位置,可以通过如下代码查看:

import nltk
nltk.data.path

二、常用语料库和词典

常用语料库(文本数据集),如图书、电影评论和聊天记录等,分为未标注语料库和人工标注语料库。

NLP任务中可以将一些停用词(如冠词a、the,介词of、to等)删除,提升计算速度,它们含义也不太重要。英文的常用停用词:

from nltk.corpus import stopwords
print(stopwords.words('english'))
['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', 'your', 
'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', 'her', 
'hers', 'herself', 'it', 'its', 'itself', 'they', 'them', 'their', 'theirs', 
'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', 'should', 'now']

三、常用NLP工具集

3.1 分句

分句:将较长的文档切分为若干句子。

一个句子结尾一般有明显标志(如句号、问好、感叹号等)。

也有特殊情况,在英文中,句号不仅作为句尾标志,还可以作为单词的一部分,如Mr.

# 分句
from nltk.corpus import gutenberg
from nltk.tokenize import sent_tokenize 
text = gutenberg.raw("austen-emma.txt")
sentences = sent_tokenize(text) # 对Emma小说全文分句
print(sentences[100]) # 显示其中一个句子

image.png

其中一句的分句的结果为:

Mr. Knightley loves to find fault with me, you know--
in a joke--it is all a joke.

也可以自己写的句子试试,然后进行分句:

from nltk.tokenize import sent_tokenize
mytext = "Hello Adam, how are you? I hope everything is going well. Today is a good day, see you dude."
print(sent_tokenize(mytext))

分句的结果为:

['Hello Adam, how are you?', 'I hope everything is going well.', 'Today is a good day, see you dude.']

3.2 标记解析

NLP最基本的输入单元:标记Token,它可以是一个词或标点符号。

任务如,将句子结尾标点符号和前面的单词进行拆分。

可以使用nltk.tokenize.word_tokenize

这里接着上面的一个句子sentences[100]进行标记解析:

# 标记解析
from nltk.tokenize import word_tokenize 
print(word_tokenize(sentences[100]))

得到的该句子的每个token标记:

['Mr.', 'Knightley', 'loves', 'to', 'find', 'fault', 'with', 'me', ',', 'you', 'know', '--', 'in', 'a', 'joke', '--', 'it', 'is', 'all', 'a', 'joke', '.']

3.3 词性标注

根据词语上下文,确定具体词性。

They sat by the fireThey fire a gun的fire意思不同,前者是名词,后者是动词。

# 词性标记
from nltk import pos_tag 
# 对句子标记解析后再进行词性标注
In [3]:pos_tag(word_tokenize("They sat by the fire."))
Out[3]: 
[('They', 'PRP'),
 ('sat', 'VBP'),
 ('by', 'IN'),
 ('the', 'DT'),
 ('fire', 'NN'),
 ('.', '.')]
In [4]:pos_tag(word_tokenize("They fire a gun."))
Out[4]: [('They', 'PRP'), 
('fire', 'VBP'), 
('a', 'DT'), 
('gun', 'NN'), 
('.', '.')]

从上面词性标注的结果看出,前者句子的fire被标注为名词(NN),后者被标注为动词(VBP),如果不知道词性单词的含义,可以help查询:

nltk.help.upenn_tagset('NN')
相关文章
|
6月前
|
机器学习/深度学习 自然语言处理 算法框架/工具
用于NLP的Python:使用Keras进行深度学习文本生成
用于NLP的Python:使用Keras进行深度学习文本生成
|
12月前
|
自然语言处理 搜索推荐 Python
NLP4:结巴分词
NLP4:结巴分词
74 0
|
12月前
|
机器学习/深度学习 自然语言处理
NLP5:NLTK词性标注
NLP5:NLTK词性标注
146 0
|
机器学习/深度学习 数据采集 自然语言处理
2022年必须要了解的20个开源NLP 库(一)
2022年必须要了解的20个开源NLP 库(一)
1317 0
2022年必须要了解的20个开源NLP 库(一)
|
机器学习/深度学习 数据采集 自然语言处理
nlp入门之nltk工具的使用
本文作为nlp入门开山第三篇,简要的介绍了nltk工具的使用
|
机器学习/深度学习 人工智能 自然语言处理
python机器学习入门之自然语言处理(NLP)工具Jieba的使用及解析
python机器学习入门之自然语言处理(NLP)工具Jieba的使用及解析
237 0
python机器学习入门之自然语言处理(NLP)工具Jieba的使用及解析
|
机器学习/深度学习 自然语言处理 数据处理
【NLP】NLTK工具集使用
NLTK提供了多种语料库(Corpora)和词典(Lexicon)资源,如WordNet等,以及常用工具集,如分句、标记解析(Tokenization)、词干提取(Stemming)、词性标注(POS Taggin)和句法分析(Syntactic Parsing)等,用于英文文本数据处理。 关于nltk的下载还是很多坑的,如果直接import nltk和nltk.download()下载失败,可参考:
503 0
【NLP】NLTK工具集使用
|
自然语言处理 索引
【NLP】LTP中文工具集使用
一、中文分词 中文词语之间不像英语一样,没有空格进行分割,NLP一般以词为最小处理单位,需要对中文分词处理。
397 0
【NLP】LTP中文工具集使用
|
机器学习/深度学习 自然语言处理 Linux
NLP系列(一)pkuseg-python:一个高准确度的中文分词工具包
pkuseg-python简单易用,支持多领域分词,在不同领域的数据上都大幅提高了分词的准确率。
526 0
|
机器学习/深度学习 人工智能 自然语言处理
2022年必须要了解的20个开源NLP 库(二)
2022年必须要了解的20个开源NLP 库(二)
416 0