From e601bc6598bb5cabc0ce1d5417a25a61e79576c0 Mon Sep 17 00:00:00 2001 From: hankcs Date: Thu, 21 Feb 2019 19:29:19 -0500 Subject: [PATCH] =?UTF-8?q?:checkered=5Fflag:=E6=96=B0=E7=9A=84=E5=8F=A5?= =?UTF-8?q?=E6=B3=95=E5=88=86=E6=9E=90=E6=A8=A1=E5=9D=97=E3=80=81=E5=A4=9A?= =?UTF-8?q?=E9=A1=B9=E6=94=B9=E8=BF=9B=EF=BC=9B=E5=B0=8F=E7=89=88=E6=9C=AC?= =?UTF-8?q?+1=EF=BC=8C=E5=8F=91=E5=B8=83v1.7.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 +++---- pom.xml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 91118b7d0..066249f9c 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ HanLP提供下列功能: * 语义推荐、拼音推荐、字词推荐 * 依存句法分析 * [基于神经网络的高性能依存句法分析器](https://github.com/hankcs/HanLP#21-%E4%BE%9D%E5%AD%98%E5%8F%A5%E6%B3%95%E5%88%86%E6%9E%90) - * [MaxEnt依存句法分析](https://github.com/hankcs/HanLP/blob/master/src/main/java/com/hankcs/hanlp/dependency/MaxEntDependencyParser.java) + * [基于ArcEager转移系统的柱搜索依存句法分析器](https://github.com/hankcs/HanLP/blob/master/src/test/java/com/hankcs/demo/DemoDependencyParser.java#L34) * [文本分类](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) * [情感分析](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) * [文本聚类](https://github.com/hankcs/HanLP/wiki/%E6%96%87%E6%9C%AC%E8%81%9A%E7%B1%BB) @@ -78,7 +78,7 @@ HanLP提供下列功能: com.hankcs hanlp - portable-1.7.1 + portable-1.7.2 ``` @@ -679,10 +679,9 @@ public class DemoDependencyParser ``` - 说明 * 内部采用`NeuralNetworkDependencyParser`实现,用户可以直接调用`NeuralNetworkDependencyParser.compute(sentence)` - * 也可以调用基于最大熵的依存句法分析器`MaxEntDependencyParser.compute(sentence)` + * 也可以调用基于ArcEager转移系统的柱搜索依存句法分析器`KBeamArcEagerDependencyParser` - 算法详解 * [《基于神经网络分类模型与转移系统的判决式依存句法分析器》](http://www.hankcs.com/nlp/parsing/neural-network-based-dependency-parser.html) - * [《最大熵依存句法分析器的实现》](http://www.hankcs.com/nlp/parsing/to-achieve-the-maximum-entropy-of-the-dependency-parser.html) ## 词典说明 本章详细介绍HanLP中的词典格式,满足用户自定义的需要。HanLP中有许多词典,它们的格式都是相似的,形式都是文本文档,随时可以修改。 diff --git a/pom.xml b/pom.xml index db55d37ac..a0d9ea812 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.hankcs hanlp - 1.7.1 + 1.7.2 HanLP http://www.hankcs.com/