Skip to content

Commit e601bc6

Browse files
committed
🏁新的句法分析模块、多项改进;小版本+1,发布v1.7.2
1 parent 710d81f commit e601bc6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ HanLP提供下列功能:
4747
* 语义推荐、拼音推荐、字词推荐
4848
* 依存句法分析
4949
* [基于神经网络的高性能依存句法分析器](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)
5151
* [文本分类](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)
5252
* [情感分析](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)
5353
* [文本聚类](https://github.com/hankcs/HanLP/wiki/%E6%96%87%E6%9C%AC%E8%81%9A%E7%B1%BB)
@@ -78,7 +78,7 @@ HanLP提供下列功能:
7878
<dependency>
7979
<groupId>com.hankcs</groupId>
8080
<artifactId>hanlp</artifactId>
81-
<version>portable-1.7.1</version>
81+
<version>portable-1.7.2</version>
8282
</dependency>
8383
```
8484

@@ -679,10 +679,9 @@ public class DemoDependencyParser
679679
```
680680
- 说明
681681
* 内部采用`NeuralNetworkDependencyParser`实现,用户可以直接调用`NeuralNetworkDependencyParser.compute(sentence)`
682-
* 也可以调用基于最大熵的依存句法分析器`MaxEntDependencyParser.compute(sentence)`
682+
* 也可以调用基于ArcEager转移系统的柱搜索依存句法分析器`KBeamArcEagerDependencyParser`
683683
- 算法详解
684684
* [《基于神经网络分类模型与转移系统的判决式依存句法分析器》](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)
686685

687686
## 词典说明
688687
本章详细介绍HanLP中的词典格式,满足用户自定义的需要。HanLP中有许多词典,它们的格式都是相似的,形式都是文本文档,随时可以修改。

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.hankcs</groupId>
66
<artifactId>hanlp</artifactId>
7-
<version>1.7.1</version>
7+
<version>1.7.2</version>
88

99
<name>HanLP</name>
1010
<url>http://www.hankcs.com/</url>

0 commit comments

Comments
 (0)