Package | Description |
---|---|
cn.hutool.extra.tokenizer |
中文分词封装
通过定义统一接口,适配第三方分词引擎 |
cn.hutool.extra.tokenizer.engine.analysis |
Lucene-analysis分词抽象封装
项目地址:https://github.com/apache/lucene-solr/tree/master/lucene/analysis |
cn.hutool.extra.tokenizer.engine.ansj |
Ansj分词实现
项目地址:https://github.com/NLPchina/ansj_seg |
cn.hutool.extra.tokenizer.engine.hanlp |
HanLP分词引擎实现
项目地址:https://github.com/hankcs/HanLP |
cn.hutool.extra.tokenizer.engine.ikanalyzer |
IKAnalyzer分词引擎实现
项目地址:https://github.com/yozhao/IKAnalyzer |
cn.hutool.extra.tokenizer.engine.jcseg |
Jcseg分词引擎实现
项目地址:https://gitee.com/lionsoul/jcseg |
cn.hutool.extra.tokenizer.engine.jieba |
Jieba分词引擎实现
项目地址:https://github.com/huaban/jieba-analysis |
cn.hutool.extra.tokenizer.engine.mmseg |
mmseg4j分词引擎实现
项目地址:https://github.com/chenlb/mmseg4j-core |
cn.hutool.extra.tokenizer.engine.mynlp |
MYNLP 中文NLP工具包分词实现
项目地址:https://github.com/mayabot/mynlp/ |
cn.hutool.extra.tokenizer.engine.word |
Word分词引擎实现
项目地址:https://github.com/ysc/word |
Modifier and Type | Class and Description |
---|---|
class |
AbstractResult
|
Modifier and Type | Method and Description |
---|---|
Result |
TokenizerEngine.parse(CharSequence text)
文本分词处理接口,通过实现此接口完成分词,产生分词结果
|
Modifier and Type | Class and Description |
---|---|
class |
AnalysisResult
Lucene-analysis分词抽象结果封装
项目地址:https://github.com/apache/lucene-solr/tree/master/lucene/analysis |
Modifier and Type | Method and Description |
---|---|
Result |
AnalysisEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
AnsjResult
Ansj分词结果实现
项目地址:https://github.com/NLPchina/ansj_seg |
Modifier and Type | Method and Description |
---|---|
Result |
AnsjEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
HanLPResult
HanLP分词结果实现
项目地址:https://github.com/hankcs/HanLP |
Modifier and Type | Method and Description |
---|---|
Result |
HanLPEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
IKAnalyzerResult
IKAnalyzer分词结果实现
项目地址:https://github.com/yozhao/IKAnalyzer |
Modifier and Type | Method and Description |
---|---|
Result |
IKAnalyzerEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
JcsegResult
Jcseg分词结果包装
项目地址:https://gitee.com/lionsoul/jcseg |
Modifier and Type | Method and Description |
---|---|
Result |
JcsegEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
JiebaResult
Jieba分词结果实现
项目地址:https://github.com/huaban/jieba-analysis |
Modifier and Type | Method and Description |
---|---|
Result |
JiebaEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
MmsegResult
mmseg4j分词结果实现
项目地址:https://github.com/chenlb/mmseg4j-core |
Modifier and Type | Method and Description |
---|---|
Result |
MmsegEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
MynlpResult
MYNLP 中文NLP工具包分词结果实现
项目地址:https://github.com/mayabot/mynlp/ |
Modifier and Type | Method and Description |
---|---|
Result |
MynlpEngine.parse(CharSequence text) |
Modifier and Type | Class and Description |
---|---|
class |
WordResult
Word分词结果实现
项目地址:https://github.com/ysc/word |
Modifier and Type | Method and Description |
---|---|
Result |
WordEngine.parse(CharSequence text) |
Copyright © 2024. All rights reserved.