Skip to content

Commit ef5a1f4

Browse files
committed
修改说明
1 parent 60ff566 commit ef5a1f4

File tree

3 files changed

+273
-269
lines changed

3 files changed

+273
-269
lines changed

README.md

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,43 @@
11
FNLP (formerly FudanNLP)
22
====
3-
之前的FudanNLP项目地址为:http://code.google.com/p/fudannlp
4-
主要改变:
5-
1. FudanNLP改为FNLP.
6-
2. package名由edu.fudan换成了 org.fnlp
7-
3. 用maven管理
83

94
介绍(Introduction)
105
-----------------------------------
11-
FNLP(formerly FudanNLP)主要是为中文自然语言处理而开发的工具包,也包含为实现这些任务的机器学习算法和数据集。
6+
FNLP主要是为中文自然语言处理而开发的工具包,也包含为实现这些任务的机器学习算法和数据集。
127
本工具包及其包含数据集使用LGPL3.0许可证。
138

14-
159
FNLP is developed for Chinese natural language processing (NLP), which also includes some machine learning algorithms and [DataSet data sets] to achieve the NLP tasks. FudanNLP is distributed under LGPL3.0.
1610

17-
If you're new to FNLP, check out the [Quick Start (使用说明)](http://www.fnlp.org/fnlp-intro) page, or [Java-docs](https://fudannlp.googlecode.com/svn/FudanNLP-1.5-API/java-docs/index.html).
18-
19-
You can also use the [Demo Website(演示网站)](http://jkx.fudan.edu.cn/nlp) so that you may check the functionality prior to downloading.
2011

21-
有遇到FNLP不能处理的例子,请到这里提交: [协同数据收集](http://code.google.com/p/fudannlp/wiki/CollaborativeCollection),有问题请查看[FAQ](http://www.fnlp.org/fnlp-faq)或到 QQ群(253541693)讨论。
12+
If you're new to FNLP, check out the [Quick Start (使用说明)](http://www.fnlp.org/fnlp-intro) page, or [Java-docs](https://fudannlp.googlecode.com/svn/FudanNLP-1.5-API/java-docs/index.html).
2213

14+
原FudanNLP项目地址:http://code.google.com/p/fudannlp
2315

2416
功能(Functions)
2517
----
2618
信息检索: 文本分类 新闻聚类
2719
中文处理: 中文分词 词性标注 实体名识别 关键词抽取 依存句法分析 时间短语识别
28-
结构化学习: 在线学习 层次分类 聚类 精确推理
20+
结构化学习: 在线学习 层次分类 聚类
2921

3022

31-
<font color="#FF0000"> 2014.3.11 项目更名为FNLP,迁移至GitHub </font> [ChangeLog 更新日志(ChangeLog)]
32-
33-
34-
23+
[ChangeLog 更新日志(ChangeLog)]
3524
[性能测试(Benchmark)] (Benchmark)
3625
[开发计划(Development Plan)] (DevPlan)
3726
[开发人员列表(Developers)](People)
3827

28+
Demos
29+
----
30+
你可以通过试用下面的网站来测试部分功能。
31+
You can also use the following site to check the partial functionality.
32+
[Demo Website(演示网站)](http://jkx.fudan.edu.cn/nlp)
33+
34+
35+
有遇到FNLP不能处理的例子,请到这里提交: [协同数据收集](http://code.google.com/p/fudannlp/wiki/CollaborativeCollection)
36+
37+
有问题请查看[FAQ](http://www.fnlp.org/fnlp-faq)或到 QQ群(253541693)讨论。
38+
39+
40+
3941
使用(Usages)
4042
----
4143
欢迎大家提供非Java语言的接口。
@@ -57,4 +59,6 @@ If you would like to acknowledge our efforts, please cite the following paper.
5759

5860
[这里](http://jkx.fudan.edu.cn/~xpqiu/)[DBLP](http://scholar.google.com/citations?sortby=pubdate&hl=en&user=Pq4Yp_kAAAAJ&view_op=list_works Google Scholar][http://www.informatik.uni-trier.de/~ley/pers/hd/q/Qiu:Xipeng.html) 可以找到更多的相关论文。
5961

60-
We used [JProfiler](http://www.ej-technologies.com/products/jprofiler/overview.html ) to help optimize the code.
62+
We used [JProfiler](http://www.ej-technologies.com/products/jprofiler/overview.html ) to help optimize the code.
63+
64+
本网站(或页面)的文字允许在CC-BY-SA 3.0协议和GNU自由文档许可证下修改和再使用。

fnlp-core/src/main/java/org/fnlp/nlp/tag/Tagger.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ public void setFile(String templateFile, String train, String model) {
9898

9999
/**
100100
* 序列标注训练和测试主程序
101-
* 训练: java -classpath fudannlp.jar edu.fudan.nlp.tag.Tagger -train template train model
102-
* 测试: java -classpath fudannlp.jar edu.fudan.nlp.tag.Tagger [-haslabel] model test [result]
101+
* 训练: java -classpath fnlp-core.jar org.fnlp.nlp.tag.Tagger -train template train model
102+
* 测试: java -classpath fnlp-core.jar org.fnlp.nlp.tag.Tagger [-haslabel] model test [result]
103103
*
104104
* @param args
105105
* @throws Exception

0 commit comments

Comments
 (0)