From f25f1cfe9ee4ec529ac1fa731def73ef6047651a Mon Sep 17 00:00:00 2001 From: wawltor Date: Wed, 16 Dec 2020 10:32:18 +0800 Subject: [PATCH] Add copyright for the word2vec (#5063) * Add the copyright for the word-embedding * add the the link for the chinese word embedding --- PaddleNLP/examples/word_embedding/README.md | 3 +++ PaddleNLP/paddlenlp/embeddings/constant.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/PaddleNLP/examples/word_embedding/README.md b/PaddleNLP/examples/word_embedding/README.md index 49318f43..d0468853 100644 --- a/PaddleNLP/examples/word_embedding/README.md +++ b/PaddleNLP/examples/word_embedding/README.md @@ -93,3 +93,6 @@ Eval Acc: | ------------------------------------| ------------- | | paddle.nn.Embedding | 0.8965 | | paddelnlp.embeddings.TokenEmbedding | 0.9082 | + +## 致谢 +- 感谢 [Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors)提供Word2Vec中文Embedding来源。 diff --git a/PaddleNLP/paddlenlp/embeddings/constant.py b/PaddleNLP/paddlenlp/embeddings/constant.py index 2d5f310a..2498b629 100644 --- a/PaddleNLP/paddlenlp/embeddings/constant.py +++ b/PaddleNLP/paddlenlp/embeddings/constant.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. +# Copyright (c) 2020 PaddlePaddle Authors and Chinese-Word-Vectors Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. -- GitLab