使用nltk从文本文件中提取所有名词

使用nltk从文本文件中提取所有名词,第1张

使用nltk从文本文件中提取所有名词

如果您不接受其他选项

NLTK
,请签出
TextBlob
。它可以轻松提取所有名词和名词短语

>>> from textblob import TextBlob>>> txt = """Natural language processing (NLP) is a field of computer science, artificial intelligence, and computational linguistics concerned with the interactions between computers and human (natural) languages.""">>> blob = TextBlob(txt)>>> print(blob.noun_phrases)[u'natural language processing', 'nlp', u'computer science', u'artificial intelligence', u'computational linguistics']


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5645932.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存