From 1ec0967cb0e4b1fb09b73a4efbf02e89b8a0337d Mon Sep 17 00:00:00 2001 From: Bella-Zhao Date: Thu, 25 Jan 2018 15:12:37 +0800 Subject: [PATCH] infer user --- youtube_recall/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_recall/README.md b/youtube_recall/README.md index c19903dc..e1595552 100644 --- a/youtube_recall/README.md +++ b/youtube_recall/README.md @@ -160,7 +160,7 @@ def _build_embedding_layer(self): ``` ### Hiddern layer -We improves the original networks in \[[1](#References)\] by modifying that the embeddings of video watches are not simply averaged but are connected to a LSTM layer with max temporal pooling instead, so that the deep sequential information related to user interests can be learned well. Considering data scale and efficiency of training, only two ReLU layers are applied, which also leads to good performance. +Here improves the original networks in \[[1](#References)\] by modifying that the embeddings of video watches are not simply averaged but are connected to a LSTM layer with max temporal pooling instead, so that the deep sequential information related to user interests can be learned well. Considering data scale and efficiency of training, only two ReLU layers are applied, which also leads to good performance. ```python self._rnn_cell = paddle.networks.simple_lstm(input=self._history_clicked_items_emb, size=64) -- GitLab