首页 > 学院 > 开发设计 > 正文

利用BosonNLP做中文分词

2019-11-06 06:16:44
字体:
来源:转载
供稿:网友
 # -*- coding: utf-8 -*-from __future__ import PRint_function, unicode_literalsfrom bosonnlp import BosonNLPnlp = BosonNLP('your API token')result = nlp.tag('在伦敦奥运会上将可能有一位沙特阿拉伯的女子')for d in result:    print(' '.join(['%s' % it for it in d['Word']]))

命该脚本为segment.py

运行结果:  在 伦敦 奥运会 上 将 可能 有 一 位 沙特阿拉伯 的 女子

your API token 通过注册 BosonNlp得到


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表