Python-NLTK可以识别输入字符串并解析它不仅基于空格而且还基于内容?说,"计算机系统"在这种情况下成了短语。任何人都可以提供示例代码吗?
输入字符串:"用户对计算机系统响应时间的意见调查"
预期输出:[" A","调查","","用户", "意见","","计算机系统","响应","时间"]
答案 0 :(得分:18)
您正在寻找的技术称为多个子领域或语言学和计算子领域的多个名称。
我将举例说明NLTK中的NE chunker:
>>> from nltk import word_tokenize, ne_chunk, pos_tag
>>> sent = "A survey of user opinion of computer system response time"
>>> chunked = ne_chunk(pos_tag(word_tokenize(sent)))
>>> for i in chunked:
... print i
...
('A', 'DT')
('survey', 'NN')
('of', 'IN')
('user', 'NN')
('opinion', 'NN')
('of', 'IN')
('computer', 'NN')
('system', 'NN')
('response', 'NN')
('time', 'NN')
使用命名实体:
>>> sent2 = "Barack Obama meets Michael Jackson in Nihonbashi"
>>> chunked = ne_chunk(pos_tag(word_tokenize(sent2)))
>>> for i in chunked:
... print i
...
(PERSON Barack/NNP)
(ORGANIZATION Obama/NNP)
('meets', 'NNS')
(PERSON Michael/NNP Jackson/NNP)
('in', 'IN')
(GPE Nihonbashi/NNP)
你可以看到它有很多缺陷,我认为它比什么都好。
术语提取
以下是一些工具
现在回到OP的问题。
问:可以NLTK提取"计算机系统"作为短语?
答:不是
如上所示,NLTK已预先训练过chunker,但它适用于名称实体,即便如此,并非所有命名实体都能得到很好的识别。
可能OP会尝试更激进的想法,让我们假设一系列名词总是形成一个短语:
>>> from nltk import word_tokenize, pos_tag
>>> sent = "A survey of user opinion of computer system response time"
>>> tagged = pos_tag(word_tokenize(sent))
>>> chunks = []
>>> current_chunk = []
>>> for word, pos in tagged:
... if pos.startswith('N'):
... current_chunk.append((word,pos))
... else:
... if current_chunk:
... chunks.append(current_chunk)
... current_chunk = []
...
>>> chunks
[[('computer', 'NN'), ('system', 'NN'), ('response', 'NN'), ('time', 'NN')], [('survey', 'NN')], [('user', 'NN'), ('opinion', 'NN')]]
>>> for i in chunks:
... print i
...
[('computer', 'NN'), ('system', 'NN'), ('response', 'NN'), ('time', 'NN')]
[('survey', 'NN')]
[('user', 'NN'), ('opinion', 'NN')]
因此,即使使用该解决方案,似乎也在尝试使用“计算机系统”。一个人很难。 但是,如果您认为有点像计算机系统的响应时间'是比计算机系统更有效的短语'。
并非所有对计算机系统响应时间的解释都是有效的:
还有许多可能的解释。因此,您必须询问,您使用所提取的短语是什么,然后了解如何继续剪切诸如计算机系统响应时间之类的长短语。