File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 6
6
![ Hex.pm] ( https://img.shields.io/hexpm/l/plug.svg )
7
7
[ ![ Documentation Status] ( https://readthedocs.org/projects/fastnlp/badge/?version=latest )] ( http://fastnlp.readthedocs.io/?badge=latest )
8
8
9
- fastNLP 是一款轻量级的 NLP 工具包。你既可以使用它快速地完成一个序列标注( [ NER ] ( reproduction/sequence_labelling/ner ) 、POS-Tagging等)、中文分词、 [ 文本分类 ] ( reproduction/text_classification ) 、 [ Matching ] ( reproduction/matching ) 、 [ 指代消解 ] ( reproduction/coreference_resolution ) 、 [ 摘要 ] ( reproduction/Summarization ) 等任务; 也可以使用它快速构建许多复杂的网络模型,进行科研。它具有如下的特性:
9
+ fastNLP是一款轻量级的自然语言处理( NLP) 工具包。你既可以用来为一个NLP任务快速地实现算法并运行,也可以用来在研究中快速构建复杂的网络模型。
10
10
11
- - 统一的Tabular式数据容器,让数据预处理过程简洁明了。内置多种数据集的Loader和Pipe,省去预处理代码;
12
- - 多种训练、测试组件,例如训练器Trainer;测试器Tester;以及各种评测metrics等等;
13
- - 各种方便的NLP工具,例如预处理embedding加载(包括ELMo和BERT); 中间数据cache等;
14
- - 部分[ 数据集与预训练模型] ( https://docs.qq.com/sheet/DVnpkTnF6VW9UeXdh?c=A1A0A0 ) 的自动下载
15
- - 详尽的中文[ 文档] ( https://fastnlp.readthedocs.io/ ) 、[ 教程] ( https://fastnlp.readthedocs.io/zh/latest/user/tutorials.html ) 以供查阅;
16
- - 提供诸多高级模块,例如Variational LSTM, Transformer, CRF等;
17
- - 在序列标注、中文分词、文本分类、Matching、指代消解、摘要等任务上封装了各种模型可供直接使用,详细内容见 [ reproduction] ( reproduction ) 部分;
18
- - 便捷且具有扩展性的训练器; 提供多种内置callback函数,方便实验记录、异常捕获等。
11
+ fastNLP具有如下的特性:
19
12
13
+ - 统一的Tabular式数据容器,简化数据预处理过程;
14
+ - 内置多种数据集的Loader,省去预处理代码;
15
+ - 各种方便的NLP工具,例如预处理embedding加载(包括ELMo和BERT)、中间数据cache等;
16
+ - 部分[ 数据集与预训练模型] ( https://docs.qq.com/sheet/DVnpkTnF6VW9UeXdh?c=A1A0A0 ) 的自动下载;
17
+ - 提供多种神经网络组件以及模型复现(涵盖中文分词、命名实体识别、文本分类、文本匹配、指代消解、摘要等任务);
18
+ - Trainer提供多种内置callback函数,方便实验记录、异常捕获等。
20
19
21
20
## 安装指南
22
21
@@ -40,6 +39,7 @@ python -m spacy download en
40
39
41
40
42
41
## fastNLP教程
42
+ 中文[ 文档] ( https://fastnlp.readthedocs.io/ ) 、[ 教程] ( https://fastnlp.readthedocs.io/zh/latest/user/tutorials.html )
43
43
44
44
### 快速入门
45
45
You can’t perform that action at this time.
0 commit comments