pyltp
pyltp 是 的 Python 封装。
在使用 pyltp 之前,您需要简要了解 能否帮助您解决问题。
目前基于Pytorch的LTP4 已经发布,而PyLTP将会只有非常有限的维护,请大家移步使用[LTP 4]()
依赖支持情况
Python 2.7, 3.x, and PyPy (PyPy2.7 >= 5.7)
一个简单的例子
下面是一个使用 pyltp 进行分词的例子
# -*- coding: utf-8 -*-
from pyltp import Segmentor
segmentor = Segmentor("/path/to/your/cws/model")
words = segmentor.segment("元芳你怎么看")
print("|".join(words))
segmentor.release()
除了分词之外,pyltp 还提供词性标注、命名
1