diff --git a/youtube_recall/README.md b/youtube_recall/README.md index c19903dcc792c24d590522782ad619a0c2038aae..e15955527c20ad07e0a459984165cca29e4a8f9b 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)