| Package | Description |
|---|---|
| com.hankcs.hanlp.collection.MDAG | |
| com.hankcs.hanlp.collection.trie.datrie |
可变双数组trie树,可以当做Map
|
| com.hankcs.hanlp.dependency.nnparser | |
| com.hankcs.hanlp.dictionary.stopword | |
| com.hankcs.hanlp.model | |
| com.hankcs.hanlp.model.crf | |
| com.hankcs.hanlp.model.perceptron.feature | |
| com.hankcs.hanlp.model.perceptron.model | |
| com.hankcs.hanlp.model.perceptron.tagset | |
| com.hankcs.hanlp.model.trigram | |
| com.hankcs.hanlp.model.trigram.frequency |
| Modifier and Type | Class and Description |
|---|---|
class |
MDAG
最小环形图
A minimalistic directed acyclical graph suitable for storing a set of Strings. |
class |
MDAGSet
基于MDAG(又称DAWG,Minimal Acyclic Finite-State Automata)的String Set
|
class |
SimpleMDAGNode
The class capable of representing a MDAG node, its _transition set, and one of its incoming transitions;
objects of this class are used to represent a MDAG after its been simplified in order to save space.
|
| Modifier and Type | Class and Description |
|---|---|
class |
IntArrayList
动态数组
|
class |
MutableDoubleArrayTrieInteger
可变双数组trie树,重构自:https://github.com/fancyerii/DoubleArrayTrie
|
| Modifier and Type | Class and Description |
|---|---|
class |
Alphabet
int 到 String 的双向map
|
class |
Matrix
Jama = Java Matrix class.
|
class |
NeuralNetworkParser |
| Modifier and Type | Class and Description |
|---|---|
class |
StopWordDictionary |
| Modifier and Type | Class and Description |
|---|---|
class |
CRFSegmentModel
静态CRF分词模型
|
| Modifier and Type | Class and Description |
|---|---|
class |
CRFModel
这份代码目前做到了与CRF++解码结果完全一致。也可以直接使用移植版的CRF++
CRFLexicalAnalyzer |
class |
FeatureFunction
特征函数,其实是tag.size个特征函数的集合
|
class |
FeatureTemplate
特征模板
|
class |
LogLinearModel
对数线性模型形式的CRF模型
|
| Modifier and Type | Class and Description |
|---|---|
class |
FeatureMap |
class |
ImmutableFeatureDatMap |
class |
ImmutableFeatureMap |
class |
ImmutableFeatureMDatMap
用MutableDoubleArrayTrie实现的ImmutableFeatureMap
|
class |
LockableFeatureMap
可切换锁定状态的特征id映射
|
class |
MutableFeatureMap |
| Modifier and Type | Class and Description |
|---|---|
class |
AveragedPerceptron
平均感知机算法学习的线性模型
|
class |
LinearModel
在线学习标注模型
|
class |
StructuredPerceptron
结构化感知机算法学习的线性模型
|
| Modifier and Type | Class and Description |
|---|---|
class |
CWSTagSet |
class |
NERTagSet |
class |
POSTagSet
词性标注集
|
class |
TagSet |
| Modifier and Type | Class and Description |
|---|---|
class |
CharacterBasedGenerativeModel
基于字符的生成模型(其实就是一个TriGram文法模型,或称2阶隐马模型)
|
| Modifier and Type | Class and Description |
|---|---|
class |
Probability
概率统计工具
|
Copyright © 2014–2021 码农场. All rights reserved.