File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ HanLP提供下列功能:
47
47
* 语义推荐、拼音推荐、字词推荐
48
48
* 依存句法分析
49
49
* [ 基于神经网络的高性能依存句法分析器] ( https://github.com/hankcs/HanLP#21-%E4%BE%9D%E5%AD%98%E5%8F%A5%E6%B3%95%E5%88%86%E6%9E%90 )
50
- * [ MaxEnt依存句法分析 ] ( https://github.com/hankcs/HanLP/blob/master/src/main /java/com/hankcs/hanlp/dependency/MaxEntDependencyParser .java )
50
+ * [ 基于ArcEager转移系统的柱搜索依存句法分析器 ] ( https://github.com/hankcs/HanLP/blob/master/src/test /java/com/hankcs/demo/DemoDependencyParser .java#L34 )
51
51
* [ 文本分类] ( https://github.com/hankcs/HanLP/wiki/%E6%96%87%E6%9C%AC%E5%88%86%E7%B1%BB%E4%B8%8E%E6%83%85%E6%84%9F%E5%88%86%E6%9E%90 )
52
52
* [ 情感分析] ( https://github.com/hankcs/HanLP/wiki/%E6%96%87%E6%9C%AC%E5%88%86%E7%B1%BB%E4%B8%8E%E6%83%85%E6%84%9F%E5%88%86%E6%9E%90#%E6%83%85%E6%84%9F%E5%88%86%E6%9E%90 )
53
53
* [ 文本聚类] ( https://github.com/hankcs/HanLP/wiki/%E6%96%87%E6%9C%AC%E8%81%9A%E7%B1%BB )
@@ -78,7 +78,7 @@ HanLP提供下列功能:
78
78
<dependency>
79
79
<groupId>com.hankcs</groupId>
80
80
<artifactId>hanlp</artifactId>
81
- <version>portable-1.7.1 </version>
81
+ <version>portable-1.7.2 </version>
82
82
</dependency>
83
83
```
84
84
@@ -679,10 +679,9 @@ public class DemoDependencyParser
679
679
```
680
680
- 说明
681
681
* 内部采用` NeuralNetworkDependencyParser ` 实现,用户可以直接调用` NeuralNetworkDependencyParser.compute(sentence) `
682
- * 也可以调用基于最大熵的依存句法分析器 ` MaxEntDependencyParser.compute(sentence) `
682
+ * 也可以调用基于ArcEager转移系统的柱搜索依存句法分析器 ` KBeamArcEagerDependencyParser `
683
683
- 算法详解
684
684
* [ 《基于神经网络分类模型与转移系统的判决式依存句法分析器》] ( http://www.hankcs.com/nlp/parsing/neural-network-based-dependency-parser.html )
685
- * [ 《最大熵依存句法分析器的实现》] ( http://www.hankcs.com/nlp/parsing/to-achieve-the-maximum-entropy-of-the-dependency-parser.html )
686
685
687
686
## 词典说明
688
687
本章详细介绍HanLP中的词典格式,满足用户自定义的需要。HanLP中有许多词典,它们的格式都是相似的,形式都是文本文档,随时可以修改。
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.hankcs</groupId >
6
6
<artifactId >hanlp</artifactId >
7
- <version >1.7.1 </version >
7
+ <version >1.7.2 </version >
8
8
9
9
<name >HanLP</name >
10
10
<url >http://www.hankcs.com/</url >
You can’t perform that action at this time.
0 commit comments