README.md 19.4 KB
Newer Older
Y
Yibing Liu 已提交
1 2
# 对话通用理解模块DGU

0
0YuanZhang0 已提交
3 4 5 6 7
 * [1、模型简介](#1、模型简介)
 * [2、快速开始](#2、快速开始)
 * [3、进阶使用](#3、进阶使用)
 * [4、参考论文](#4、参考论文)
 * [5、版本更新](#5、版本更新)
Y
Yibing Liu 已提交
8

0
0YuanZhang0 已提交
9
## 1、模型简介
Y
Yibing Liu 已提交
10 11 12

    对话相关的任务中,Dialogue System常常需要根据场景的变化去解决多种多样的任务。任务的多样性(意图识别、槽位解析、DA识别、DST等等),以及领域训练数据的稀少,给Dialogue System的研究和应用带来了巨大的困难和挑战,要使得dialogue system得到更好的发展,需要开发一个通用的对话理解模型。为此,我们给出了基于BERT的对话通用理解模块(DGU: DialogueGeneralUnderstanding),通过实验表明,使用base-model(BERT)并结合常见的学习范式,就可以在几乎全部对话理解任务上取得比肩甚至超越各个领域业内最好的模型的效果,展现了学习一个通用对话理解模型的巨大潜力。

0
0YuanZhang0 已提交
13
## 2、快速开始
Y
Yibing Liu 已提交
14

0
0YuanZhang0 已提交
15
### 安装说明
Y
Yibing Liu 已提交
16

0
0YuanZhang0 已提交
17 18 19 20 21
####   a、环境依赖
- Python >= 2.7
- cuda >= 9.0
- cudnn >= 7.0
- PaddlePaddle >= 1.3.1,请参考[安装指南](http://www.paddlepaddle.org/#quick-start)进行安装, 由于模块内模型基于bert做finetuning, 训练速度较慢, 建议用户安装GPU版本PaddlePaddle进行训练。
Y
Yibing Liu 已提交
22

0
0YuanZhang0 已提交
23
  注意:使用Windows GPU环境的用户,需要将示例代码中的[fluid.ParallelExecutor](http://paddlepaddle.org/documentation/docs/zh/1.4/api_cn/fluid_cn.html#parallelexecutor)替换为[fluid.Executor](http://paddlepaddle.org/documentation/docs/zh/1.4/api_cn/fluid_cn.html#executor)
0
0YuanZhang0 已提交
24
####   b、下载代码
Y
Yibing Liu 已提交
25

0
0YuanZhang0 已提交
26
    克隆代码库到本地
Y
Yibing Liu 已提交
27 28 29 30 31 32

```
git clone https://github.com/PaddlePaddle/models.git
cd models/PaddleNLP/dialogue_model_toolkit/dialogue_general_understanding
```

0
0YuanZhang0 已提交
33
### 任务简介
0
0YuanZhang0 已提交
34
    本模块内共包含6个任务,内容如下:
Y
Yibing Liu 已提交
35

0
0YuanZhang0 已提交
36 37 38 39 40 41 42 43
```
udc: 使用Ubuntu Corpus V1公开数据集,实现对话匹配任务;
atis_slot: 使用微软提供的公开数据集(Airline Travel Information System),实现槽位识别任务;
dstc2: 使用对话状态跟踪挑战(Dialog State Tracking Challenge)2公开数据集,实现对话状态追踪(DST)任务;
atis_intent: 使用微软提供的公开数据集(Airline Travel Information System),实现意图识别任务;
mrda: 使用公开数据集Meeting Recorder Dialogue Act,实现DA识别任务;
swda:使用公开数据集Switchboard Dialogue Act Corpus,实现DA识别任务;
```
0
0YuanZhang0 已提交
44

45 46
注意: 目前dgu模块内提供的训练好的官方模型及效果, 均是在GPU单卡上面训练和预测得到的, 用户如需复线效果, 可使用单卡相同的配置.

0
0YuanZhang0 已提交
47 48
### 数据准备
    数据集说明:
Y
Yibing Liu 已提交
49

0
0YuanZhang0 已提交
50 51 52 53 54 55 56
```
UDC: Ubuntu Corpus V1;
ATIS: 微软提供的公开数据集(Airline Travel Information System),模块内包含意图识别和槽位解析两个任务的数据;
DSTC2: 对话状态跟踪挑战(Dialog State Tracking Challenge)2;
MRDA: Meeting Recorder Dialogue Act;
SWDA:Switchboard Dialogue Act Corpus;
```
0
0YuanZhang0 已提交
57

0
0YuanZhang0 已提交
58 59
    数据集、相关模型下载:

0
0YuanZhang0 已提交
60
```
0
0YuanZhang0 已提交
61
cd dgu && bash prepare_data_and_model.sh
0
0YuanZhang0 已提交
62
```
0
0YuanZhang0 已提交
63 64 65

    下载的数据集中已提供了训练集,测试集和验证集,用户如果需要重新生成某任务数据集的训练数据,可执行:

0
0YuanZhang0 已提交
66
```
0
0YuanZhang0 已提交
67
cd dgu/scripts && bash run_build_data.sh task_name
0
0YuanZhang0 已提交
68 69 70
参数说明:
task_name: udc, swda, mrda, atis, dstc2,  选择5个数据集选项中用户需要生成的数据名
```
Y
Yibing Liu 已提交
71

0
0YuanZhang0 已提交
72
### 单机训练
Y
Yibing Liu 已提交
73

0
0YuanZhang0 已提交
74
####     方式一: 推荐直接使用模块内脚本训练
Y
Yibing Liu 已提交
75 76

```
0
0YuanZhang0 已提交
77
bash run.sh task_name task_type
0
0YuanZhang0 已提交
78 79 80
参数说明:
task_name: udc, swda, mrda, atis_intent, atis_slot, dstc2,选择6个任务中任意一项;
task_type: train,predict, evaluate, inference, all, 选择5个参数选项中任意一项(train: 只执行训练,predict: 只执行预测,evaluate:只执行评估过程,依赖预测的结果,inference: 保存inference model,all: 顺序执行训练、预测、评估、保存inference model的过程);
Y
Yibing Liu 已提交
81

0
0YuanZhang0 已提交
82
训练示例: bash run.sh atis_intent train
0
0YuanZhang0 已提交
83
```
0
0YuanZhang0 已提交
84 85 86

    方式一如果为CPU训练: 

0
0YuanZhang0 已提交
87 88 89 90
```
请将run.sh内参数设置为: 
1、export CUDA_VISIBLE_DEVICES=
```
0
0YuanZhang0 已提交
91 92 93

    方式一如果为GPU训练: 

0
0YuanZhang0 已提交
94 95 96 97 98 99
```
请将run.sh内参数设置为: 
1、如果为单卡训练(用户指定空闲的单卡):
export CUDA_VISIBLE_DEVICES=0 
2、如果为多卡训练(用户指定空闲的多张卡):
export CUDA_VISIBLE_DEVICES=0,1,2,3
Y
Yibing Liu 已提交
100
```
0
0YuanZhang0 已提交
101 102

####     方式二: 执行训练相关的代码:
0
0YuanZhang0 已提交
103

Y
Yibing Liu 已提交
104
```
0
0YuanZhang0 已提交
105 106
export FLAGS_sync_nccl_allreduce=0
export FLAGS_eager_delete_tensor_gb=1  #开启显存优化
Y
Yibing Liu 已提交
107

0
0YuanZhang0 已提交
108 109 110
export CUDA_VISIBLE_DEVICES=0  #GPU单卡训练
#export CUDA_VISIBLE_DEVICES=0,1,2,3  #GPU多卡训练
#export CUDA_VISIBLE_DEVICES=  #CPU训练
Y
Yibing Liu 已提交
111

0
0YuanZhang0 已提交
112 113 114 115 116 117
if  [ ! "$CUDA_VISIBLE_DEVICES" ]
then
    use_cuda=false
else
    use_cuda=true
fi
Y
Yibing Liu 已提交
118

0
0YuanZhang0 已提交
119 120
TASK_NAME="atis_intent"  #指定训练的任务名称
BERT_BASE_PATH="data/pretrain_model/uncased_L-12_H-768_A-12"
Y
Yibing Liu 已提交
121

0
0YuanZhang0 已提交
122 123 124 125
if [ ! -d "./data/saved_models/${TASK_NAME}" ]; then
    mkdir "./data/saved_models/${TASK_NAME}"
fi

0
0YuanZhang0 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
python -u main.py \
       --task_name=${TASK_NAME} \
       --use_cuda=${use_cuda} \
       --do_train=true \
       --in_tokens=true \
       --epoch=20 \
       --batch_size=4096 \
       --do_lower_case=true \
       --data_dir="./data/input/data/atis/${TASK_NAME}" \
       --bert_config_path="${BERT_BASE_PATH}/bert_config.json" \
       --vocab_path="${BERT_BASE_PATH}/vocab.txt" \
       --init_from_pretrain_model="${BERT_BASE_PATH}/params" \
       --save_model_path="./data/saved_models/${TASK_NAME}" \
       --save_param="params" \
       --save_steps=100 \
       --learning_rate=2e-5 \
       --weight_decay=0.01 \
       --max_seq_len=128 \
       --print_steps=10 \
       --use_fp16 false 
Y
Yibing Liu 已提交
146
```
0
0YuanZhang0 已提交
147

148 149 150
注:
1) 采用方式二时,模型训练过程可参考run.sh内相关任务的参数设置
2) 用户进行模型训练、预测、评估等, 可通过修改data/config/dgu.yaml配置文件或者从命令行传入来进行参数配置, 优先推荐命令行参数传入;
Y
Yibing Liu 已提交
151

0
0YuanZhang0 已提交
152
### 模型预测
0
0YuanZhang0 已提交
153 154
####     方式一: 推荐直接使用模块内脚本预测

0
0YuanZhang0 已提交
155
```
0
0YuanZhang0 已提交
156
bash run.sh task_name task_type
0
0YuanZhang0 已提交
157 158 159
参数说明:
task_name: udc, swda, mrda, atis_intent, atis_slot, dstc2,选择6个任务中任意一项;
task_type: train,predict, evaluate, inference, all, 选择5个参数选项中任意一项(train: 只执行训练,predict: 只执行预测,evaluate:只执行评估过程,依赖预测的结果,inference: 保存inference model,all: 顺序执行训练、预测、评估、保存inference model的过程);
Y
Yibing Liu 已提交
160

0
0YuanZhang0 已提交
161
预测示例: bash run.sh atis_intent predict
Y
Yibing Liu 已提交
162
```
0
0YuanZhang0 已提交
163 164 165

    方式一如果为CPU预测: 

Y
Yibing Liu 已提交
166
```
0
0YuanZhang0 已提交
167 168 169
请将run.sh内参数设置为: 
1、export CUDA_VISIBLE_DEVICES=
```
0
0YuanZhang0 已提交
170 171 172

    方式一如果为GPU预测: 

Y
Yibing Liu 已提交
173
```
0
0YuanZhang0 已提交
174 175 176
请将run.sh内参数设置为: 
支持单卡预测(用户指定空闲的单卡):
export CUDA_VISIBLE_DEVICES=0 
Y
Yibing Liu 已提交
177
```
0
0YuanZhang0 已提交
178

0
0YuanZhang0 已提交
179
注:预测时,如采用方式一,用户可通过修改run.sh中init_from_params参数来指定自己训练好的需要预测的模型,目前代码中默认为加载官方已经训练好的模型;
Y
Yibing Liu 已提交
180

0
0YuanZhang0 已提交
181 182
####     方式二: 执行预测相关的代码:

0
0YuanZhang0 已提交
183 184 185
```
export FLAGS_sync_nccl_allreduce=0
export FLAGS_eager_delete_tensor_gb=1  #开启显存优化
Y
Yibing Liu 已提交
186

0
0YuanZhang0 已提交
187 188
export CUDA_VISIBLE_DEVICES=0  #单卡预测
#export CUDA_VISIBLE_DEVICES=  #CPU预测
Y
Yibing Liu 已提交
189

0
0YuanZhang0 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
if  [ ! "$CUDA_VISIBLE_DEVICES" ]
then
    use_cuda=false
else
    use_cuda=true
fi

TASK_NAME="atis_intent"  #指定预测的任务名称
BERT_BASE_PATH="./data/pretrain_model/uncased_L-12_H-768_A-12"

python -u main.py \
       --task_name=${TASK_NAME} \
       --use_cuda=${use_cuda} \
       --do_predict=true \
       --in_tokens=true \
       --batch_size=4096 \
       --do_lower_case=true \
       --data_dir="./data/input/data/atis/${TASK_NAME}" \
       --init_from_params="./data/saved_models/trained_models/${TASK_NAME}/params" \
       --bert_config_path="${BERT_BASE_PATH}/bert_config.json" \
       --vocab_path="${BERT_BASE_PATH}/vocab.txt" \
       --output_prediction_file="./data/output/pred_${TASK_NAME}" \
       --max_seq_len=128
Y
Yibing Liu 已提交
213 214
```

0
0YuanZhang0 已提交
215
注:采用方式二时,模型预测过程可参考run.sh内具体任务的参数设置
Y
Yibing Liu 已提交
216

0
0YuanZhang0 已提交
217
### 模型评估
0
0YuanZhang0 已提交
218 219
    模块中6个任务,各任务支持计算的评估指标内容如下:

Y
Yibing Liu 已提交
220
```
0
0YuanZhang0 已提交
221 222 223 224 225 226
udc: 使用R1@10、R2@10、R5@10三个指标评估匹配任务的效果;
atis_slot: 使用F1指标来评估序列标注任务;
dstc2: 使用joint acc 指标来评估DST任务的多标签分类结果;
atis_intent: 使用acc指标来评估分类结果;
mrda: 使用acc指标来评估DA任务分类结果;
swda:使用acc指标来评估DA任务分类结果;
Y
Yibing Liu 已提交
227
```
0
0YuanZhang0 已提交
228 229

    效果上,6个任务公开数据集评测效果如下表所示:
Y
Yibing Liu 已提交
230

0
0YuanZhang0 已提交
231 232 233 234 235 236 237 238
| task_name | udc | udc | udc | atis_slot | dstc2 | atis_intent | swda | mrda |
| :------ | :------ | :------ | :------ | :------| :------ | :------ | :------ | :------ |
| 对话任务 | 匹配 | 匹配 | 匹配 | 槽位解析 | DST | 意图识别 | DA | DA |
| 任务类型 | 分类 | 分类 | 分类 | 序列标注 | 多标签分类 | 分类 | 分类 | 分类 |
| 任务名称 | udc | udc | udc| atis_slot | dstc2 | atis_intent | swda | mrda |
| 评估指标 | R1@10 | R2@10 | R5@10 | F1 | JOINT ACC | ACC | ACC | ACC |
| SOTA | 76.70% | 87.40% | 96.90% | 96.89% | 74.50% | 98.32% | 81.30% | 91.70% |
| DGU | 82.03% | 90.59% | 97.73% | 97.14% | 91.23% | 97.76% | 80.37% | 91.53% |
Y
Yibing Liu 已提交
239

0
0YuanZhang0 已提交
240
####     方式一: 推荐直接使用模块内脚本评估
Y
Yibing Liu 已提交
241 242

```
0
0YuanZhang0 已提交
243
bash run.sh task_name task_type
0
0YuanZhang0 已提交
244 245 246 247
参数说明:
task_name: udc, swda, mrda, atis_intent, atis_slot, dstc2,选择6个任务中任意一项;
task_type: train,predict, evaluate, inference, all, 选择5个参数选项中任意一项(train: 只执行训练,predict: 只执行预测,evaluate:只执行评估过程,依赖预测的结果,inference: 保存inference model,all: 顺序执行训练、预测、评估、保存inference model的过程);

0
0YuanZhang0 已提交
248
评估示例: bash run.sh atis_intent evaluate
Y
Yibing Liu 已提交
249
```
0
0YuanZhang0 已提交
250

0
0YuanZhang0 已提交
251
注:评估计算ground_truth和predict_label之间的打分,默认CPU计算即可;
Y
Yibing Liu 已提交
252

0
0YuanZhang0 已提交
253
####     方式二: 执行评估相关的代码: 
Y
Yibing Liu 已提交
254 255

```
0
0YuanZhang0 已提交
256
TASK_NAME="atis_intent"  #指定预测的任务名称
Y
Yibing Liu 已提交
257

0
0YuanZhang0 已提交
258 259 260 261 262 263
python -u main.py \
    --task_name=${TASK_NAME} \
    --use_cuda=false \
    --do_eval=true \
    --evaluation_file="./data/input/data/atis/${TASK_NAME}/test.txt" \
    --output_prediction_file="./data/output/pred_${TASK_NAME}"
Y
Yibing Liu 已提交
264 265
```

0
0YuanZhang0 已提交
266
### 模型推断
0
0YuanZhang0 已提交
267 268
####     方式一: 推荐直接使用模块内脚本保存inference model

0
0YuanZhang0 已提交
269
```
0
0YuanZhang0 已提交
270
bash run.sh task_name task_type
0
0YuanZhang0 已提交
271 272 273
参数说明:
task_name: udc, swda, mrda, atis_intent, atis_slot, dstc2,选择6个任务中任意一项;
task_type: train,predict, evaluate, inference, all, 选择5个参数选项中任意一项(train: 只执行训练,predict: 只执行预测,evaluate:只执行评估过程,依赖预测的结果,inference: 保存inference model,all: 顺序执行训练、预测、评估、保存inference model的过程);
Y
Yibing Liu 已提交
274

0
0YuanZhang0 已提交
275
保存模型示例: bash run.sh atis_intent inference
Y
Yibing Liu 已提交
276
```
0
0YuanZhang0 已提交
277 278 279

    方式一如果为CPU执行inference model过程: 

Y
Yibing Liu 已提交
280
```
0
0YuanZhang0 已提交
281 282 283
请将run.sh内参数设置为: 
1、export CUDA_VISIBLE_DEVICES=
```
0
0YuanZhang0 已提交
284 285 286

    方式一如果为GPU执行inference model过程:

Y
Yibing Liu 已提交
287
```
0
0YuanZhang0 已提交
288 289 290
请将run.sh内参数设置为: 
1、单卡模型推断(用户指定空闲的单卡):
export CUDA_VISIBLE_DEVICES=0
Y
Yibing Liu 已提交
291 292
```

0
0YuanZhang0 已提交
293 294
####     方式二: 执行inference model相关的代码: 

0
0YuanZhang0 已提交
295 296 297
```
TASK_NAME="atis_intent"  #指定预测的任务名称
BERT_BASE_PATH="./data/pretrain_model/uncased_L-12_H-768_A-12"
Y
Yibing Liu 已提交
298

0
0YuanZhang0 已提交
299 300
export CUDA_VISIBLE_DEVICES=0  #单卡推断inference model
#export CUDA_VISIBLE_DEVICES=  #CPU预测
Y
Yibing Liu 已提交
301

0
0YuanZhang0 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314
if  [ ! "$CUDA_VISIBLE_DEVICES" ]
then
    use_cuda=false
else
    use_cuda=true
fi
python -u main.py \
    --task_name=${TASK_NAME} \
    --use_cuda=${use_cuda} \
    --do_save_inference_model=true \
    --init_from_params="./data/saved_models/trained_models/${TASK_NAME}/params" \
    --bert_config_path="${BERT_BASE_PATH}/bert_config.json" \
    --inference_model_dir="data/inference_models/${TASK_NAME}"
Y
Yibing Liu 已提交
315 316
```

0
0YuanZhang0 已提交
317
### 预训练模型
0
0YuanZhang0 已提交
318
    支持PaddlePaddle官方提供的BERT及ERNIE相关模型作为预训练模型
Y
Yibing Liu 已提交
319

0
0YuanZhang0 已提交
320 321 322 323 324 325 326
| Model | Layers | Hidden size | Heads |Parameters |
| :------| :------: | :------: |:------: |:------: |
| [BERT-Base, Uncased](https://bert-models.bj.bcebos.com/uncased_L-12_H-768_A-12.tar.gz) | 12 | 768 |12 |110M |
| [BERT-Large, Uncased](https://bert-models.bj.bcebos.com/uncased_L-24_H-1024_A-16.tar.gz) | 24 | 1024 |16 |340M |
|[BERT-Base, Cased](https://bert-models.bj.bcebos.com/cased_L-12_H-768_A-12.tar.gz)|12|768|12|110M|
|[BERT-Large, Cased](https://bert-models.bj.bcebos.com/cased_L-24_H-1024_A-16.tar.gz)|24|1024|16|340M|
|[ERNIE, english](https://ernie.bj.bcebos.com/ERNIE_en_1.0.tgz)|24|1024|16|3.8G|
Y
Yibing Liu 已提交
327 328


0
0YuanZhang0 已提交
329
### 服务部署
0
0YuanZhang0 已提交
330
    模块内提供已训练好6个对话任务的inference_model模型,用户可根据自身业务情况进行下载使用。
0
0YuanZhang0 已提交
331
#### 服务器部署
0
0YuanZhang0 已提交
332
    请参考PaddlePaddle官方提供的[服务器端部署](https://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/advanced_usage/deploy/inference/index_cn.html)文档进行部署上线。
Y
Yibing Liu 已提交
333 334


0
0YuanZhang0 已提交
335 336 337 338 339 340 341 342 343 344 345
## 3、进阶使用

### 背景介绍

    dialogue_general_understanding模块,针对数据集开发了相关的模型训练过程,支持分类,多标签分类,序列标注等任务,用户可针对自己的数据集,进行相关的模型定制;并取得了比肩业内最好模型的效果:

### 模型概览

<p align="center">
<img src="./images/dgu.png" width="500">
</p>
Y
Yibing Liu 已提交
346 347 348 349 350 351 352 353 354 355 356

&ensp;&ensp;&ensp;&ensp;训练、预测、评估使用的数据可以由用户根据实际的对话应用场景,自己组织数据。输入网络的数据格式统一为,示例如下:

```
[CLS] token11 token12 token13  [INNER_SEP] token11 token12 token13 [SEP]  token21 token22 token23 [SEP]  token31 token32 token33 [SEP]
```

&ensp;&ensp;&ensp;&ensp;输入数据以[CLS]开始,[SEP]分割内容为对话内容相关三部分,如上文,当前句,下文等,如[SEP]分割的每部分内部由多轮组成的话,使用[INNER_SEP]进行分割;第二部分和第三部分部分皆可缺省;

&ensp;&ensp;&ensp;&ensp;目前dialogue_general_understanding模块内已将数据准备部分集成到代码内,用户可根据上面输入数据格式,组装自己的数据;

0
0YuanZhang0 已提交
357
&ensp;&ensp;&ensp;&ensp;用户也可以根据自己的需求,组建自定义的模型,具体方法如下所示:
Y
Yibing Liu 已提交
358

0
0YuanZhang0 已提交
359
&ensp;&ensp;&ensp;&ensp;a、自定义数据 
Y
Yibing Liu 已提交
360

0
0YuanZhang0 已提交
361
&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;如用户目前有数据集为**task_name**, 则在**data/input/data**下定义**task_name**文件夹,将数据集存放进去;在**dgu/reader.py**中,新增自定义的数据处理的类,如**udc**数据集对应**UDCProcessor**;  在**train.py**内设置**task_name****processor**的对应关系(如**processors = {'udc': reader.UDCProcessor}**).
Y
Yibing Liu 已提交
362

0
0YuanZhang0 已提交
363
&ensp;&ensp;&ensp;&ensp;b、 自定义上层网络范式
Y
Yibing Liu 已提交
364

0
0YuanZhang0 已提交
365
&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;如果用户自定义模型属于分类、多分类和序列标注这3种类型其中一个,则只需要在**dgu/define_paradigm.py** 内指明**task_name**和相应上层范式函数的对应关系即可,如用户自定义模型属于其他模型,则需要自定义上层范式函数并指明其与**task_name**之间的关系;
Y
Yibing Liu 已提交
366

0
0YuanZhang0 已提交
367
&ensp;&ensp;&ensp;&ensp;c、自定义预测封装接口
Y
Yibing Liu 已提交
368

0
0YuanZhang0 已提交
369
&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;用户可在**dgu/define_predict_pack.py**内定义task_name和自定义封装预测接口的对应关系;
Y
Yibing Liu 已提交
370

0
0YuanZhang0 已提交
371 372 373 374 375 376 377 378 379 380 381 382 383 384
## 4、参考论文
1、Harshit Kumar, Arvind Agarwal, Riddhiman Dasgupta,Sachindra Joshi, and Arun Kumar. 2017.   Dia-logue act sequence labeling using hierarchical en-coder with crf.arXiv preprint arXiv:1709.04250.
2、Changliang Li, Liang Li, and Ji Qi. 2018.  A self-attentive model with gate mechanism for spoken lan-guage understanding.  InProceedings of the 2018Conference on Empirical Methods in Natural Lan-guage Processing, pages 3824–3833.
3、Ryan Lowe, Nissan Pow, Iulian Serban, and JoellePineau. 2015. The ubuntu dialogue corpus: A largedataset for research in unstructured multi-turn dia-logue systems.arXiv preprint arXiv:1506.08909.
4、Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Cor-rado, and Jeff Dean. 2013. Distributed representa-tions of words and phrases and their compositional-ity. InAdvances in neural information processingsystems, pages 3111–3119.
5、Hiroki Ouchi and Yuta Tsuboi. 2016. Addressee andresponse selection for multi-party conversation. InProceedings of the 2016 Conference on EmpiricalMethods in Natural Language Processing, pages2133–2143.
6、Elizabeth Shriberg, Raj Dhillon, Sonali Bhagat, JeremyAng, and Hannah Carvey. 2004. The icsi meetingrecorder dialog act (mrda) corpus. Technical report,INTERNATIONAL COMPUTER SCIENCE INSTBERKELEY CA.
7、Andreas Stolcke, Klaus Ries, Noah Coccaro, Eliza-beth Shriberg, Rebecca Bates, Daniel Jurafsky, PaulTaylor, Rachel Martin, Carol Van Ess-Dykema, andMarie Meteer. 2000. Dialogue act modeling for au-tomatic tagging and recognition of conversationalspeech.Computational linguistics, 26(3):339–373.
8、Ye-Yi Wang, Li Deng, and Alex Acero. 2005.  Spo-ken language understanding.IEEE Signal Process-ing Magazine, 22(5):16–31.Jason Williams, Antoine Raux, Deepak Ramachan-dran, and Alan Black. 2013. The dialog state tracking challenge.  InProceedings of the SIGDIAL 2013Conference, pages 404–413.
9、Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc VLe,  Mohammad Norouzi,  Wolfgang Macherey,Maxim  Krikun,  Yuan  Cao,  Qin  Gao,  KlausMacherey,  et al. 2016.   Google’s neural ma-chine translation system: Bridging the gap betweenhuman and machine translation.arXiv preprintarXiv:1609.08144.Kaisheng 
10、Yao, Geoffrey Zweig, Mei-Yuh Hwang,Yangyang Shi, and Dong Yu. 2013. Recurrent neu-ral networks for language understanding. InInter-speech, pages 2524–2528.
11、Xiangyang Zhou, Lu Li, Daxiang Dong, Yi Liu, YingChen, Wayne Xin Zhao, Dianhai Yu, and Hua Wu.2018.  Multi-turn response selection for chatbotswith deep attention matching network. InProceed-ings of the 56th Annual Meeting of the Associationfor Computational Linguistics (Volume 1: Long Pa-pers), volume 1, pages 1118–1127.
12、Su Zhu and Kai Yu. 2017.  Encoder-decoder withfocus-mechanism for sequence labelling based spo-ken language understanding. In2017 IEEE Interna-tional Conference on Acoustics, Speech and SignalProcessing (ICASSP), pages 5675–5679. IEEE.
13、Jason Williams, Antoine Raux, Deepak Ramachan-dran, and Alan Black. 2013. The dialog state track-ing challenge. InProceedings of the SIGDIAL 2013Conference, pages 404–413.
Y
Yibing Liu 已提交
385

0
0YuanZhang0 已提交
386
## 5、版本更新
Y
Yibing Liu 已提交
387

0
0YuanZhang0 已提交
388 389
第一版:PaddlePaddle 1.4.0版本
主要功能:支持对话6个数据集上任务的训练、预测和评估
Y
Yibing Liu 已提交
390

0
0YuanZhang0 已提交
391 392
第二版:PaddlePaddle 1.6.0版本
更新功能:在第一版的基础上,根据PaddlePaddle的模型规范化标准,对模块内训练、预测、评估等代码进行了重构,提高易用性;
Y
Yibing Liu 已提交
393

0
0YuanZhang0 已提交
394
## 如何贡献代码
Y
Yibing Liu 已提交
395 396

&ensp;&ensp;&ensp;&ensp;如果你可以修复某个issue或者增加一个新功能,欢迎给我们提交PR。如果对应的PR被接受了,我们将根据贡献的质量和难度进行打分(0-5分,越高越好)。如果你累计获得了10分,可以联系我们获得面试机会或者为你写推荐信。