欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

荐 切分算法[完全切分 & 正向 & 逆向 & 双向最长匹配 & 速度测评]_CodingPark编程公园

程序员文章站 2022-09-14 08:20:01
@Python版本...

词典分词

切分算法

词典导入

# -*- coding:utf-8 -*-
# Author:AG
# Date: 2020-07-5

from pyhanlp import *


def load_dictionary():
    IOUtil = JClass('com.hankcs.hanlp.corpus.io.IOUtil')
    path = HanLP.Config.CoreDictionaryPath
    dic 

本文地址:https://blog.csdn.net/weixin_38411989/article/details/107157758