请问演示功能https://hanlp.hankcs.com/ 中,粗分功能是文档哪个api, 我需要,感谢
对应2.1中的"tok/coarse"
,请参考文档。
from hanlp_restful import HanLPClient
HanLP = HanLPClient('https://www.hanlp.com/api', auth=None, language='zh') # auth不填则匿名,zh中文,mul多语种
doc = HanLP.parse('2021年HanLPv2.1为生产环境带来次世代最先进的多语种NLP技术作为拜年🎁🧧', tasks='tok/coarse')
print(doc)
{
"tok/coarse": [
["2021年", "HanLPv2.1", "为", "生产环境", "带来", "次世代", "最", "先进", "的", "多语种", "NLP", "技术", "作为", "拜年", "🎁🧧"]
]
}
HanLP = hanlp.load()
本地方法调用可以吗?怎么写
通过指定tasks='tok/coarse'
可以减少运算量,提高速度,详见文档:
初学者,文档没怎么看懂, MultiTaskLearning是怎么用的?
同问:java api中是哪个API呢
设置task = "tok/coarse"即为粗分词语功能