From ceba09864298db735721e92173e38deb0906506b Mon Sep 17 00:00:00 2001 From: Yibing Liu Date: Tue, 23 Apr 2019 01:23:46 +0800 Subject: [PATCH] Add ernie link (#2130) * Add ernie link * Add submodule --- .gitmodules | 3 +++ README.md | 1 + .../knowledge-driven-dialogue => knowledge-driven-dialogue | 0 3 files changed, 4 insertions(+) rename PaddleNLP/knowledge-driven-dialogue => knowledge-driven-dialogue (100%) diff --git a/.gitmodules b/.gitmodules index 2d983675..99a1bbf2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "PaddleNLP/language_representations_kit"] path = PaddleNLP/language_representations_kit url = https://github.com/PaddlePaddle/LARK +[submodule "knowledge-driven-dialogue"] + path = knowledge-driven-dialogue + url = https://github.com/baidu/knowledge-driven-dialogue diff --git a/README.md b/README.md index a988c861..dd48a161 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ PaddlePaddle 提供了丰富的计算单元,使得用户可以采用模块化 --|:--:|:--:|:--: [Transformer](./PaddleNLP/neural_machine_translation/transformer/README.md)|机器翻译模型|基于self-attention,计算复杂度小,并行度高,容易学习长程依赖,翻译效果更好|[Attention Is All You Need](https://arxiv.org/abs/1706.03762) [BERT](https://github.com/PaddlePaddle/LARK/tree/develop/BERT)|语义表示模型|在多个 NLP 任务上取得 SOTA 效果,支持多卡多机训练,支持混合精度训练|[BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding](https://arxiv.org/abs/1810.04805) +[ERNIE](https://github.com/PaddlePaddle/LARK/tree/develop/ERNIE)|语义表示模型|基于知识增强的中文语义表示模型,在多个任务上的效果超越 BERT 中文模型|- [ELMo](https://github.com/PaddlePaddle/LARK/tree/develop/ELMo)|语义表示模型|支持多卡训练,训练速度比主流实现快1倍,提供在中文词法分析任务上迁移学习的示例。|[ELMo: Embeddings from Language Models](https://arxiv.org/abs/1802.05365) [LAC](https://github.com/baidu/lac/blob/master/README.md)|联合的词法分析模型|能够整体性地完成中文分词、词性标注、专名识别任务|[Chinese Lexical Analysis with Deep Bi-GRU-CRF Network](https://arxiv.org/abs/1807.01882) [Senta](https://github.com/baidu/Senta/blob/master/README.md)|情感倾向分析模型集|百度AI开放平台中情感倾向分析模型|- diff --git a/PaddleNLP/knowledge-driven-dialogue b/knowledge-driven-dialogue similarity index 100% rename from PaddleNLP/knowledge-driven-dialogue rename to knowledge-driven-dialogue -- GitLab