pyltp库的使用进行文本分析

Posted zlj843767688

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyltp库的使用进行文本分析相关的知识,希望对你有一定的参考价值。

pyltp目前支持puthon3.6不支持3.7

用python3.7安装了很久都没有安装成功

无奈换成了3.6

 分句

from pyltp import SentenceSplitter
sents = SentenceSplitter.split(元芳你怎么看?我就趴窗口上看呗!)  # 分句
print(
.join(sents))

技术图片切割句子

 

 分词

import os
from pyltp import Segmentor
LTP_DATA_DIR=D:Python3.6ltp3.4ltp3.4
cws_model_path=os.path.join(LTP_DATA_DIR,cws.model)
segmentor=Segmentor()
segmentor.load(cws_model_path)
words=segmentor.segment(熊高雄你吃饭了吗)
print(type(words))
print(	.join(words))
segmentor.release()

技术图片

 

 来源https://www.jianshu.com/p/f78453f5d1ca

以上是关于pyltp库的使用进行文本分析的主要内容,如果未能解决你的问题,请参考以下文章

自然语言处理基础技术工具篇之pyltp

pyltp-依存句法分析例子

哈工大自然语言处理LTP工具箱pyltp在Windows11下的安装使用

使用pyltp提取文本中的地址

pyltp安装问题解决

NLP入门pyltp的介绍与使用