@@ -38,9 +38,6 @@ pip install fastNLP
38
38
python -m spacy download en
39
39
```
40
40
41
- 目前使用pypi安装fastNLP的版本是0.4.1,有较多功能仍未更新,最新内容以master分支为准。
42
- fastNLP0.5.0版本将在近期推出,请密切关注。
43
-
44
41
45
42
## fastNLP教程
46
43
@@ -60,12 +57,11 @@ fastNLP0.5.0版本将在近期推出,请密切关注。
60
57
- [ 8. 使用Modules和Models快速搭建自定义模型] ( https://fastnlp.readthedocs.io/zh/latest/tutorials/tutorial_8_modules_models.html )
61
58
- [ 9. 快速实现序列标注模型] ( https://fastnlp.readthedocs.io/zh/latest/tutorials/tutorial_9_seq_labeling.html )
62
59
- [ 10. 使用Callback自定义你的训练过程] ( https://fastnlp.readthedocs.io/zh/latest/tutorials/tutorial_10_callback.html )
63
- - [ 11. 使用fitlog 辅助 fastNLP 进行科研] ( https://fastnlp.readthedocs.io/zh/latest/tutorials/tutorial_11_fitlog.html )
64
60
65
61
### 扩展教程
66
62
67
63
- [ Extend-1. BertEmbedding的各种用法] ( https://fastnlp.readthedocs.io/zh/latest/tutorials/extend_1_bert_embedding.html )
68
-
64
+ - [ Extend-2. 使用fitlog 辅助 fastNLP 进行科研 ] ( https://fastnlp.readthedocs.io/zh/latest/tutorials/extend_2_fitlog.html )
69
65
70
66
71
67
## 内置组件
@@ -91,19 +87,19 @@ fastNLP 在 embeddings 模块中内置了几种不同的embedding:静态embedd
91
87
<tr >
92
88
<td> encoder </td>
93
89
<td> 将输入编码为具有具有表示能力的向量 </td>
94
- <td> embedding , RNN, CNN, transformer
90
+ <td> Embedding , RNN, CNN, Transformer, ...
95
91
</tr >
96
92
<tr >
97
93
<td> decoder </td>
98
94
<td> 将具有某种表示意义的向量解码为需要的输出形式 </td>
99
- <td> MLP, CRF </td>
95
+ <td> MLP, CRF, ... </td>
100
96
</tr >
101
97
</table >
102
98
103
99
104
100
## 项目结构
105
101
106
- < img src = " ./docs/source/figures/workflow.png " width = " 60% " height = " 60% " >
102
+ ![ ] ( ./docs/source/figures/workflow.png )
107
103
108
104
fastNLP的大致工作流程如上图所示,而项目结构如下:
109
105
@@ -130,7 +126,7 @@ fastNLP的大致工作流程如上图所示,而项目结构如下:
130
126
</tr >
131
127
<tr >
132
128
<td><b> fastNLP.io </b></td>
133
- <td> 实现了读写功能,包括数据读入与预处理,模型读写,自动下载等 </td>
129
+ <td> 实现了读写功能,包括数据读入与预处理,模型读写,数据与模型自动下载等 </td>
134
130
</tr >
135
131
</table >
136
132
0 commit comments