码迷,mamicode.com
首页 > 其他好文 > 详细

pyltp库的使用进行文本分析

时间:2020-03-15 11:42:13      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:import   分词   color   python   style   python3   LTP   info   pytho   

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

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

无奈换成了3.6

 分句

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

技术图片切割句子。

 

 分词

import os
from pyltp import Segmentor
LTP_DATA_DIR=D:\Python3.6\ltp3.4\ltp3.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(\t.join(words))
segmentor.release()

技术图片

 

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

pyltp库的使用进行文本分析

标签:import   分词   color   python   style   python3   LTP   info   pytho   

原文地址:https://www.cnblogs.com/zlj843767688/p/12496486.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!