Skip to content

kwin-wang/pyltp

 
 

Repository files navigation

pyltp: the python extension for LTP

Pypi Status Build Status

pyltp是语言技术平台(Language Technology Platform,LTP)的Python封装。 关于LTP更多的信息,欢迎访问LTP项目主页。

简介与背景知识

pyltp是语言技术平台(Language Technology Platform,LTP)接口的一个Python封装。 本项目旨在使Python用户可以本地调用LTP。 该项目还处于测试状态,欢迎反馈bug。

在使用pyltp之前,您需要简要了解

如果您对这些问题不了解,请首先阅读我们提供的有关语言技术平台的文档。 在本文档的后续中,我们假定您已经阅读并成功编译并使用语言技术平台。

对应

  • LTP版本: 3.3.0
  • LTP模型版本:3.3.0

安装

现阶段,pyltp主要在Linux编译测试。我们也欢迎用户提供其他平台的测试结果。

pypi安装

$ pip install pyltp

如果您使用使用github的开发版的pyltp,您可以采用如下命令编译pyltp

$ git clone https://github.com/HIT-SCIR/pyltp
$ git submodule init
$ git submodule update
$ python setup.py build

例子

# -*- coding: utf-8 -*-
from pyltp import Segmentor
segmentor = Segmentor()
segmentor.load("/path/to/your/cws/model")
words = segmentor.segment("元芳你怎么看")
print "|".join(words)

更多例子,请参考example/example.py

作者

About

pyltp: the python extension for LTP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 99.7%
  • Other 0.3%