spaCy 是一个 Python 和 Cpython 的 NLP 自然语言文本处理库。
示例代码:
>>> import spacy.en >>> from spacy.parts_of_SPEech import ADV >>> # Load the pipeline, and call it with some text. >>> nlp = spacy.en.English() >>> tokens = nlp("‘Give it back,’ he pleaded abjectly, ‘it’s mine.’", tag=True, parse=False) >>> print(''.join(tok.string.upper() if tok.pos == ADV else tok.string for tok in tokens)) ‘Give it BACK,’ he pleaded ABJECTLY, ‘it’s mine.
发布于 2017-11-08 23:58:54 | 84 次阅读
发布于 2017-01-01 23:25:59 | 158 次阅读
发布于 2016-10-27 23:55:53 | 232 次阅读