From 857ade098092491709b1121cd6384bf61d235524 Mon Sep 17 00:00:00 2001 From: 0YuanZhang0 <953963890@qq.com> Date: Mon, 26 Aug 2019 13:58:33 +0800 Subject: [PATCH] fix_link (#3186) --- .../auto_dialogue_evaluation/README.md | 20 +++++++++---------- .../dialogue_general_understanding/README.md | 20 +++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/PaddleNLP/dialogue_model_toolkit/auto_dialogue_evaluation/README.md b/PaddleNLP/dialogue_model_toolkit/auto_dialogue_evaluation/README.md index 6a7407a4..3a5b3f0d 100644 --- a/PaddleNLP/dialogue_model_toolkit/auto_dialogue_evaluation/README.md +++ b/PaddleNLP/dialogue_model_toolkit/auto_dialogue_evaluation/README.md @@ -1,17 +1,17 @@ # 对话自动评估模块ADE ## 目录 -- [**1、模型简介**](#1、模型简介) +- [**模型简介**](#模型简介) -- [**2、快速开始**](#2、快速开始) +- [**快速开始**](#快速开始) -- [**3、进阶使用**](#3、进阶使用) +- [**进阶使用**](#进阶使用) -- [**4、参考论文**](#4、参考论文) +- [**参考论文**](#参考论文) -- [**5、版本更新**](#5、版本更新) +- [**版本更新**](#版本更新) -## 1、模型简介 +## 模型简介     对话自动评估(Auto Dialogue Evaluation)评估开放领域对话系统的回复质量,能够帮助企业或个人快速评估对话系统的回复质量,减少人工评估成本。 @@ -19,7 +19,7 @@     2. 利用少量标注数据(特定对话系统或场景的人工打分),在匹配模型基础上进行微调,可以显著提高该对话系统或场景的评估效果。 -## 2、快速开始 +## 快速开始 ### 安装说明 @@ -544,7 +544,7 @@ python -u main.py \ #### 服务器部署     请参考PaddlePaddle官方提供的[服务器端部署](https://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/advanced_usage/deploy/inference/index_cn.html)文档进行部署上线。 -## 3、进阶使用 +## 进阶使用 ### 背景介绍     对话自动评估任务输入是文本对(上文,回复),输出是回复质量得分,匹配任务(预测上下文是否匹配)和自动评估任务有天然的联系,该项目利用匹配任务作为自动评估的预训练,利用少量标注数据,在匹配模型基础上微调。 @@ -566,7 +566,7 @@ python -u main.py \ 8474 13 44 34 2 87 91 23 0 ``` -## 4、参考论文 +## 参考论文 1、Anjuli Kannan and Oriol Vinyals. 2017. Adversarial evaluation of dialogue models. arXiv preprint arXiv:1701.08198. 2、Ryan Lowe, Michael Noseworthy, Iulian V Serban, Nicolas Angelard-Gontier, Yoshua Bengio, and Joelle Pineau. 2017. Towards an automatic turing test: Learning to evaluate dialogue responses. arXiv preprint arXiv:1708.07149. 3、Sebastian M¨oller, Roman Englert, Klaus Engelbrecht, Verena Hafner, Anthony Jameson, Antti Oulasvirta, Alexander Raake, and Norbert Reithinger. 2006. Memo: towards automatic usability evaluation of spoken dialogue services by user error simulations. In Ninth International Conference on Spoken Language Processing. @@ -578,7 +578,7 @@ of machine translation. In Proceedings of the 40th annual meeting on association 8、Chia-Wei Liu, Ryan Lowe, Iulian V Serban, Michael Noseworthy, Laurent Charlin, and Joelle Pineau. 2016. How not to evaluate your dialogue system: An empirical study of unsupervised evaluation metrics for dialogue response generation. arXiv preprint arXiv:1603.08023. 9、Chin-Yew Lin. 2004. Rouge: A package for automatic evaluation of summaries. Text Summarization Branches Out. -## 5、版本更新 +## 版本更新 第一版:PaddlePaddle 1.4.0版本 主要功能:支持4个不同对话系统数据上训练、预测和系统性能评估 diff --git a/PaddleNLP/dialogue_model_toolkit/dialogue_general_understanding/README.md b/PaddleNLP/dialogue_model_toolkit/dialogue_general_understanding/README.md index 4a3209b3..0dc5b6b4 100644 --- a/PaddleNLP/dialogue_model_toolkit/dialogue_general_understanding/README.md +++ b/PaddleNLP/dialogue_model_toolkit/dialogue_general_understanding/README.md @@ -1,21 +1,21 @@ # 对话通用理解模块DGU ## 目录 -- [**1、模型简介**](#1、模型简介) +- [**模型简介**](#模型简介) -- [**2、快速开始**](#2、快速开始) +- [**快速开始**](#快速开始) -- [**3、进阶使用**](#3、进阶使用) +- [**进阶使用**](#进阶使用) -- [**4、参考论文**](#4、参考论文) +- [**参考论文**](#参考论文) -- [**5、版本更新**](#5、版本更新) +- [**版本更新**](#版本更新) -## 1、模型简介 +## 模型简介     对话相关的任务中,Dialogue System常常需要根据场景的变化去解决多种多样的任务。任务的多样性(意图识别、槽位解析、DA识别、DST等等),以及领域训练数据的稀少,给Dialogue System的研究和应用带来了巨大的困难和挑战,要使得dialogue system得到更好的发展,需要开发一个通用的对话理解模型。为此,我们给出了基于BERT的对话通用理解模块(DGU: DialogueGeneralUnderstanding),通过实验表明,使用base-model(BERT)并结合常见的学习范式,就可以在几乎全部对话理解任务上取得比肩甚至超越各个领域业内最好的模型的效果,展现了学习一个通用对话理解模型的巨大潜力。 -## 2、快速开始 +## 快速开始 ### 安装说明 @@ -409,7 +409,7 @@ python -u main.py \     请参考PaddlePaddle官方提供的[服务器端部署](https://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/advanced_usage/deploy/inference/index_cn.html)文档进行部署上线。 -## 3、进阶使用 +## 进阶使用 ### 背景介绍 @@ -445,7 +445,7 @@ python -u main.py \       用户可在**dgu/define_predict_pack.py**内定义task_name和自定义封装预测接口的对应关系; -## 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. @@ -460,7 +460,7 @@ python -u main.py \ 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. -## 5、版本更新 +## 版本更新 第一版:PaddlePaddle 1.4.0版本 主要功能:支持对话6个数据集上任务的训练、预测和评估 -- GitLab