From fd2ca462cd4939bf569bb46951d981feaa88411b Mon Sep 17 00:00:00 2001 From: Helin Wang Date: Wed, 8 Mar 2017 10:22:17 -0800 Subject: [PATCH] fix according to comment --- word2vec/README.en.md | 2 +- word2vec/index.en.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/word2vec/README.en.md b/word2vec/README.en.md index 0f13cad..f2b82e7 100644 --- a/word2vec/README.en.md +++ b/word2vec/README.en.md @@ -263,7 +263,7 @@ Ethird = wordemb(thirdword) Efourth = wordemb(fourthword) ``` -- Concat n-1 word embedding vectors into a single feature vector. +- Concatenate n-1 word embedding vectors into a single feature vector. ```python contextemb = paddle.layer.concat(input=[Efirst, Esecond, Ethird, Efourth]) diff --git a/word2vec/index.en.html b/word2vec/index.en.html index 99cdbe7..96ba403 100644 --- a/word2vec/index.en.html +++ b/word2vec/index.en.html @@ -305,7 +305,7 @@ Ethird = wordemb(thirdword) Efourth = wordemb(fourthword) ``` -- Concat n-1 word embedding vectors into a single feature vector. +- Concatenate n-1 word embedding vectors into a single feature vector. ```python contextemb = paddle.layer.concat(input=[Efirst, Esecond, Ethird, Efourth]) -- GitLab