| Literature DB >> 33286641 |
Chuanchuan Zhao1, Jinguo You1,2, Xinxian Wen1, Xiaowu Li1,2.
Abstract
Recent years have seen a surge in approaches that combine deep learning and recommendation systems to capture user preference or item interaction evolution over time. However, the most related work only consider the sequential similarity between the items and neglects the item content feature information and the impact difference of interacted items on the next items. This paper introduces the deep bidirectional long short-term memory (LSTM) and self-attention mechanism into the sequential recommender while fusing the information of item sequences and contents. Specifically, we deal with the issues in a three-pronged attack: the improved item embedding, weight update, and the deep bidirectional LSTM preference learning. First, the user-item sequences are embedded into a low-dimensional item vector space representation via Item2vec, and the class label vectors are concatenated for each embedded item vector. Second, the embedded item vectors learn different impact weights of each item to achieve item awareness via self-attention mechanism; the embedded item vectors and corresponding weights are then fed into the bidirectional LSTM model to learn the user preference vectors. Finally, the top similar items in the preference vector space are evaluated to generate the recommendation list for users. By conducting comprehensive experiments, we demonstrate that our model outperforms the traditional recommendation algorithms on Recall@20 and Mean Reciprocal Rank (MRR@20).Entities:
Keywords: class label; deep bidirectional LSTM; interactive sequence; item similarity; recommendation systems; self-attention
Year: 2020 PMID: 33286641 PMCID: PMC7517473 DOI: 10.3390/e22080870
Source DB: PubMed Journal: Entropy (Basel) ISSN: 1099-4300 Impact factor: 2.524
Figure 1The Sequence Recommendation Model.
Figure 2The movie sequence recommendation.
Item’s Sequence.
| UserId | MovieId | Rating | Timestamp |
|---|---|---|---|
| 1 | 122 | 5 | 838985046 |
| 1 | 185 | 5 | 838983525 |
| 1 | 231 | 5 | 838983392 |
| 1 | 292 | 5 | 838983421 |
| 1 | 316 | 5 | 838983392 |
Item’s Contents.
| MovieId | Title | Genres |
|---|---|---|
| 1 | Jumanji (1995) | Adventure | Children | Fantasy |
| 2 | Grumpier Old Men (1995) | Comedy | Romance |
| 3 | Waiting to Exhale (1995) | Comedy | Drama| Romance |
| 4 | Father of the Bride Part II (1995) | Comedy |
| 5 | Heat (1995) | Action | Crime | Thriller |
Performance Comparison on MovieLens Dataset.
| Recall@20 | MRR@20 | |
|---|---|---|
| Item-based k-NN | 0.12142 | 0.03639 |
| Exp. Dec. Item-based k-NN | 0.12853 | 0.04231 |
| Matrix Factorization (MF) | 0.07744 | 0.01192 |
| Seq. Matrix Factorization | 0.10730 | 0.01550 |
| Standard GRU | 0.15773 | 0.04730 |
|
|
|
|
Figure 3Impact of Embedded Dimensions.
Impact of Bidirectional long short term memory (LSTM) with Different Layers.
| Bi-LSTM | Deep Bi-LSTM | Improve | |
|---|---|---|---|
| Recall@20 | 0.22280 |
| +1.59% |
| MRR@20 | 0.05475 |
| +2.91% |
Impact of Self-Attention.
| no-att | add-att | Improve | |
|---|---|---|---|
| Recall@20 | 0.15040 |
| +8.26% |
| MRR@20 | 0.03186 |
| +7.34% |