Рекомендательные системы, основанные на графах, с использованием непрерывных представлений сетей тема диссертации и автореферата по ВАК РФ 00.00.00, кандидат наук Киселёв Дмитрий Андреевич
- Специальность ВАК РФ00.00.00
- Количество страниц 160
Оглавление диссертации кандидат наук Киселёв Дмитрий Андреевич
Contents
Acknowledgments
1 Introduction
1.1 Object of the research
1.2 Subject of the research
1.3 PhD Dissertation Relevance
1.4 Problems of recommender systems
1.5 Tasks and objectives of the research
1.6 Publications and approbation of research
Bibliography
List of figures
Appendices
Рекомендованный список диссертаций по специальности «Другие cпециальности», 00.00.00 шифр ВАК
Кластеризация в обогащенных признаками сетях с использованием подхода восстановления данных2021 год, кандидат наук Шалилех Соруш Ахмад
Онтологический доступ к данным с использованием дизъюнктивных аксиом2023 год, кандидат наук Герасимова Ольга Александровна
Подход к отслеживанию траектории многороторных летательных аппаратов в неизвестных условиях / Trajectory Tracking Approach for Multi-rotor Aerial Vehicles in Unknown Environments2024 год, кандидат наук Кулатхунга Мудийанселаге Гисара Пратхап Кулатхунга
Повышение устойчивости математических моделей в состязательных сценариях с использованием подходов обобщения2023 год, кандидат наук Рашид Бадер
Модели и методы информационно-телекоммуникационной системы ВУЗА/Models and methods for University information and telecommunication systems2024 год, кандидат наук Ник Аин Купаи Алиреза
Введение диссертации (часть автореферата) на тему «Рекомендательные системы, основанные на графах, с использованием непрерывных представлений сетей»
1 Introduction
Nowadays, recommender systems are one of the key components of different consumer services from e-commerce to social media [1,3]. It helps to navigate through the large volume of items empowering the user experience. The methods in the fields vary from classic matrix completion techniques to modern ones inspired by NLP sequence models. One of the prominent approaches is to consider the recommender systems as a link prediction problem on bipartite user-item interaction graphs. The graph machine learning and network embedding field recently emerged but still requires adaptation to efficiently solve recommender systems tasks.
1.1 Object of the research
Figure 1: Generic scheme of recommendation models
The object of the dissertation is recommender systems. Figure 1 describes the generic scheme of a recommender system problem. The model receives a set of users, items, their features and interaction log as input. The output of a model is an item or slate of the most relevant items for a given user that optimize user engagement (e.g. likes, time spent in the app) or business effect (e.g. expected income from item impressions). In section 1.4 we explain classic recommender approaches and corresponding problems in detail.
1.2 Subject of the research
Figure 2: Representations of user-item interactions as graphs for recommender system problem
Recently, a lot of works propose to consider the recommendation problem as a problem on graphs [22]. They replace the user-item interaction matrix as a (bipartite) graph with heterogeneous edges (Figure 2). Such a view allows the fusion of the content and collaborative (interaction) approaches. Moreover, the graph representation of the task allows finding similar users or items just by taking the two-hop neighborhood of the user. So preservation of graph topology can play an important role. By taking the graph into account matrix completion task can be transformed into the future link prediction problem (on Figure 2 our goal is to define whether dotted edges will exist or not). This problem is usually formulated as a well-studied machine learning problem: ranking or binary classification of possible (non-presented) edges in the interaction graph.
Figure 3 presents the link prediction pipeline. First;y, we take a user-item interaction graph as input. Then, the network structure and other properties are encoded in continuous representation (more in section 1.5). There are three main types of network embedding techniques: matrix factorization, random walk based methods and graph neural networks (GNN). The first group of methods applies dimensionality reduction techniques to some of the graph matrix representations (e.g. adjacency, Laplacian). The second group of methods samples random walks and applies Skip-gram [12] to optimize node co-occurrence in the walks. The last group of methods can be generalized by the Message-Passing framework. It consists of two steps: place non-linear node features transformation on the edge (encode message) and aggregate all messages for a given node including itself. Finally, when network embeddings are obtained, we can solve the link prediction problem with standard table data classification methods. Additionally, we can apply self-supervised learning to preserve specific graph properties or to pretrain end-to-end models.
In the dissertation, we have studied different facets of network embedding techniques, their properties and their effect on downstream link prediction problems. In the section 1.5 objectives and tasks in the research are formulated more precisely.
Figure 3: The pipeline of link prediction for recommender systems
1.3 PhD Dissertation Relevance
User behavior has changed dramatically over the last 5-10 years. The speed of changes in behavioral trends accelerated. So, it is hard to apply the classic methods to gain impact on client
and business value [20, 14]. Therefore, new methods are required to solve the aforementioned behavioral dynamics issues. Graph-based recommender systems allow integration of the best part of different methods to make recommenders more accurate.
1.4 Problems of recommender systems
Figure 4: Common theoretical problems of graph-based recommender systems development caused by environment dynamics
Figure 4 describes the problem of recommendation in the dynamic environment. The set of users, items, and their interaction histories are provided as input. We aim to select the items that will engage the user in the future. Let us suppose that we have three time periods in observations: (1) before the COVID-19 pandemic, (2) lockdown, and (3) slight relaxation of restrictions. Implicit user preferences are changing over time due to shifts in the environment and user internal evolution. This example helps us to show the possible problems caused by environmental dynamics. Firstly, we have new content without any previous interactions (cold start) [17]. Moreover, obtained historical data are biased towards previous behavior (feedback loop) [11] and current model performance degrades due to data distribution shifts [2]. Finally, the data has a temporal structure [20].
There are plenty of methods to handle mentioned issues. However, they usually concentrate only on a specific problem and are susceptible to others. The most popular and powerful models for recommender systems are matrix factorization techniques [19]. They are aimed to learn the latent representation of users and items to predict the expected score of its interaction. However, matrix factorization is a static model and is restricted to the already-known set of users and items. Moreover, they can not handle the features of users and items. So, such models are susceptible to the aforementioned issues. The factorization machines [16] generalize the matrix factorization by adding the user and item descriptions. Thus, they can predict interactions between new users
and items. However, these predictions do not account for any interactions before the full model update. Other content models [15] usually do not consider user-item interactions at all focusing on the internal content representations of items and users. Thus, factorization machines and content models are not capable to solve the online adaptation issue. Nevertheless, there are a couple of tricks to introduce temporality there. For example, one can find most similar items only to the last watched by user item. More sophisticated models that handle recent changes in user behavior are sequential recommender system models[20]. It looks at the user as on a sequence of viewed items. Such vision allows the application of different generative sequence models from natural language processing like LSTM [23] or Transformers [18]. To embed the item they can use its internal content embedding. So, they are capable of partially solving the cold-start problem. However, they have problems handling new users due to omitting their entity. Thereby, different types of recommender models focus on different issues but do not solve them at once. So, a new view of the problem is required.
1.5 Tasks and objectives of the research
Figure 5 describes the main objectives of the work. They are required for building an efficient graph-based recommender system that is capable to solve issues caused by environment dynamics: cold start, awareness of temporal structure, data distribution shifts and feedback loops.
As mentioned before, the recommendation problem is equivalent to the link prediction problem which is the binary classification of edge existence. It requires the continuous representation of discrete graph substructures (nodes and edges). So, the first objective of the research is to analyze existent network embedding techniques. However, we can not use only a graph structure due to the cold-start problem. So, the next two steps are handling of nodes and edges features and its efficient fusion with collaborative info. The fourth objective is to account for the temporal structure of the user-item interaction graph, we aim to handle user interests' evolution and causality in their actions. It is required to add exploration in the models to solve data distribution shifts and feedback loop problems. So, the the last objective is to propose graph-based exploration techniques. After this step model can provide an efficient recommendation to the user, receive their feedback and update the user-item interaction graph and node embeddings.
Thus, we postulate the five objectives of the research. We consider these problems independently and provide a chapter for each one. We gradually complicate proposed models to develop a final recommender system that covers all given objectives. One can reformulate the research tasks more precisely as follows:
1. Compare the network embedding techniques to find the best match to specific graph types and attribute representations under a unified framework
2. Propose an efficient strategy to incorporate node features with structural information to solve the link prediction (recommendation) problem
Figure 5: Structure of our research. We increase the setting scale and complexity by developing novel graph-based methods in recommender systems. We start with a static setting of user-item interactions and apply graph embedding techniques to develop a simple collaborative recommender system (a). Then we focus on taking into account node-based (b) and edge-based features (c) to build a hybrid recommender system that is capable to solve the cold-start problem. Finally, we consider dynamics component (d) and exploration techniques (e) to enable the online-adaptation ability of the underlined models. Each component contributes to the system and empowers the next step, thus providing a strong baseline for graph-based recommendations for solving cold-start, temporality, data distribution shift and feedback loop problems in a novel and efficient way.
3. Propose an efficient strategy to incorporate edge features with structural information to solve the link prediction (recommendation) problem
4. Propose the method to efficiently preserve the temporality of networks
5. Propose the method to explore the possible user-item interactions to handle data distribution shifts and feedback loop problems
The main goal of the research is to create new graph methods and show that they are the best fit to solve all the problems caused by environment dynamics and intense changes in user behavior.
Key aspects/ideas to be defended:
1. Detailed taxonomy of the network embedding techniques and their applications [7]
2. Benchmarking of the state-of-the-art graph embedding techniques in the link prediction problem [7]
3. The methodology to automatically extract features in the text-attributed graphs for link prediction and node classification [9]
4. Novel self-supervised joint network node and edge embedding based on consistent Line graph representation [8]
5. Novel temporal network embedding achieving state-of-the-art results in various temporal graph machine learning tasks [10]
6. Standardized temporal network embedding evaluation framework and comparison of state-of-the-art models under common training setting, providing new insights and clarification of real-world performance compared to reported in the original research articles [10]
7. Novel Personalized PageRank [13] based exploration strategy [6]
8. Small-world [21] based exploration strategy [6]
9. The methodology how to apply proposed exploration methods to recommender system with online adaptation in dynamic environments [6]
Scientific novelty. The dissertation concentrates on the recently emerged, poorly studied problem of graph-based recommender systems using automatic feature extraction. The work studies five main components required for the successful implementation of graph-based recommender: user-item interaction graph structure encoding, an efficient fusion of structural (collaborative) and node attributes (user and item content), expressive context-aware edge encoding, temporal properties encoding and exploration of poorly known user-item pairs. We study each objective separately in different papers. Each paper conducts a review, comparison and analysis of the existent methods and provides strategies for optimal applications. For the last three tasks, we proposed novel models and methods that improve the performance of downstream link prediction and recommendation problems.
Theoretical and practical significance. The first two contributions conclude the current progress in the field and propose new directions and views on further development. Also, it provides pieces of advice for the practical use of network embedding techniques. The last three contributions provide novel models that improve performance on practical datasets. Also, the fourth paper presents the standardized evaluation framework that allows the acceleration of research in the temporal graph embedding and graph-based recommender system fields.
The methodology of the research. The study is based on the theory of geometric deep learning, graph neural networks, network science, recommender systems, classic machine learning and statistics.
The reliability of the results. It is provided by complex and exhaustive experiments including calculations of the confidence intervals of the metrics on top with the comparison to the other state-of-the-art methods.
Funding. The research was supported by the Faculty of Computer Science, HSE University; Russian Science Foundation; HSE University Basic Research Program; computational resources of HPC facilities at HSE University.
1.6 Publications and approbation of research First-tier publications
1. Ilya Makarov, Dmitrii Kiselev, Nikita Nikitinsky, and Lovro Subelj. Survey on graph em-beddings and their applications to machine learning problems on graphs. PeerJ Computer Science, 7:e357, 2021 [7]
2. Ilya Makarov, Mikhail Makarov, and Dmitrii Kiselev. Fusion of text and graph information for machine learning problems on networks. PeerJ Computer Science, 7, 2021 [9]
3. Ilya Makarov, Ksenia Korovina, and Dmitrii Kiselev. JONNEE: Joint network nodes and edges embedding. IEEE Access, 2021 [8]
4. Ilya Makarov, Andrey Savchenko, Arseny Korovko, Leonid Sherstyuk, Nikita Severin, Dmitrii Kiselev, Aleksandr Mikheev, and Dmitrii Babaev. Temporal network embedding framework with causal anonymous walks representations. PeerJ Computer Science, 8:e858, 2022 [10]
5. Dmitrii Kiselev and Ilya Makarov. Exploration in sequential recommender systems via graph representations (accepted). IEEE Access, 2022 [6]
Other publications
Dmitrii Kiselev and Ilya Makarov. Prediction of new itinerary markets for airlines via network embedding. In International Conference on Analysis of Images, Social Networks and Texts, pages 315-325. Springer, 2019 [5]
Reports at workshops and conferences
1. Internal seminar of the Sber Recommender Systems Platform, 1 June 2022. Topic: "Exploration in interactive recommender systems via graph representations"
12th International Conference on Network Analysis (NET) 2022. 25 May 2022. Topic: "Predicting Molecule Toxicity via Graph Neural Networks"
3. Journal Club of the Artificial Intelligence Research Institute (AIRI), Moscow, Russia, 27 October 2021. Topic: "Temporal graph embeddings".
4. Internal seminar of the Sber Recommender Systems Platform, 26 October 2021. Topic: "Review of the exploration in recommender systems"
5. Internal seminar of the Sber Recommender Systems Platform, 8 July 2021. Topic: "Graph-based recommender systems"
6. Artificial Intelligence Journey, 20 December 2020. Topic: "Eternal Student: How to check whether adaptive recommender system learns"
7. 2nd International Workshop "New Level of Visualization - New Level of Analytics" (NLVNLA-2020), 24 January 2020. Topic: "Visualizing Structural Data via Network Embeddings"
8. International Conference on Analysis of Images, Social Networks and Texts (AIST-2019), 19 July 2019. Topic: "Prediction of new itinerary markets for airlines via network embedding"
9. 9th International Conference on Network Analysis (NET) 2019. 18 May 2022. Topic: "Prediction of new itinerary markets for airlines via network embedding"
Похожие диссертационные работы по специальности «Другие cпециальности», 00.00.00 шифр ВАК
Модели и методы автоматической обработки неструктурированных данных в биомедицинской области2023 год, доктор наук Тутубалина Елена Викторовна
Общий подход к теории и методологии метода анализа сингулярного спектра2023 год, доктор наук Голяндина Нина Эдуардовна
Разработка алгоритмов раннего прогнозирования нестандартных ситуаций при бурении скважин (Development of algorithms for predictive alarming on non-standard situations at well drilling)2024 год, кандидат наук Гурина Екатерина Викторовна
Система визуальной аналитики для объяснения и улучшения моделей прогнозирования дорожного движения на основе механизма внимания2024 год, кандидат наук Джин Сеунгмин
Анализ задачи поиска кратчайшего пути с неполной информацией и обучением2023 год, кандидат наук Кетков Сергей Сергеевич
Заключение диссертации по теме «Другие cпециальности», Киселёв Дмитрий Андреевич
VI. CONCLUSION
The paper provides a new exploration strategy: Rooted PageRank for local popularity estimation. We apply it to study the online adaptation of sequential recommender system models.
Explained results show the importance of exploration techniques for the online model adaptation. Models benefit from different types of exploration if the temporal structure is properly presented. The relative performance of exploration methods depends on data properties. The Rooted PageRank approach proves more effective for the graphs with few positive edges. In this case, it samples less diverse nodes and can better estimate the local popularity.
The proposed strategy's performance is competitive with the other exploration strategies for recommender systems. In the future, we aim to apply the proposed technique to repeated consumption scenarios. Further, we aim to study the proposed exploration strategies in more complex model pipelines like multi-stage recommender systems. Also, it is important to study the proposed technique for heterogeneous graphs when items and users have different types.
Список литературы диссертационного исследования кандидат наук Киселёв Дмитрий Андреевич, 2023 год
REFERENCES
[1] G. Adomavicius, J. C. Bockstedt, S. P. Curley, and J. Zhang, "Effects of online recommendations on consumers' willingness to pay," Information Systems Research, vol. 29, no. 1, pp. 84-102, 2018.
[2] D. Jannach and M. Jugovac, "Measuring the business value of recom-mender systems," ACM Trans. Manage. Inf. Syst., vol. 10, no. 4, dec 2019.
[3] S. Wang, L. Hu, Y. Wang, L. Cao, Q. Z. Sheng, and M. Orgun, "Sequential recommender systems: challenges, progress and prospects," arXivpreprint arXiv:2001.04830, 2019.
[4] T. Yang, H. Tang, C. Bai, J. Liu, J. Hao, Z. Meng, and P. Liu, "Exploration in deep reinforcement learning: A comprehensive survey," arXiv preprint arXiv:2109.06668, 2021.
[5] S. Wang, L. Hu, Y. Wang, X. He, Q. Z. Sheng, M. A. Orgun, L. Cao, F. Ricci, and P. S. Yu, "Graph learning based recommender systems: A review," arXiv preprint arXiv:2105.06339, 2021.
[6] X. Wang, X. He, M. Wang, F. Feng, and T.-S. Chua, "Neural graph collaborative filtering," in Proceedings of the 42nd international ACM SIGIR conference on Research and development in Information Retrieval, 2019, pp. 165-174.
[7] X. He, K. Deng, X. Wang, Y. Li, Y. Zhang, and M. Wang, "Lightgcn: Simplifying and powering graph convolution network for recommendation," in Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval, 2020, pp. 639-648.
[8] R. Ying, R. He, K. Chen, P. Eksombatchai, W. L. Hamilton, and J. Leskovec, "Graph convolutional neural networks for web-scale recom-
mender systems," in Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining, 2018, pp. 974-983.
[9] S. Kumar, X. Zhang, and J. Leskovec, "Predicting dynamic embedding trajectory in temporal interaction networks," in Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining. Association for Computing Machinery, 2019, pp. 1269-1278.
[10] I. Makarov, A. Savchenko, A. Korovko, L. Sherstyuk, N. Severin, D. Kise-lev, A. Mikheev, and D. Babaev, "Temporal network embedding framework with causal anonymous walks representations," PeerJ Computer Science, vol. 8, no. e858, pp. 1-27, 2022.
[11] E. Rossi, B. Chamberlain, F. Frasca, D. Eynard, F. Monti, and M. Bron-stein, "Temporal graph networks for deep learning on dynamic graphs," arXiv preprint arXiv:2006.10637, vol. 2006.10637, 2020.
[12] L. Page, S. Brin, R. Motwani, and T. Winograd, "The pagerank citation ranking: Bringing order to the web." Stanford InfoLab, Tech. Rep., 1999.
[13] A. Slivkins, "Introduction to multi-armed bandits," CoRR, vol. abs/1904.07272, 2019.
[14] W. Chu, L. Li, L. Reyzin, and R. Schapire, "Contextual bandits with linear payoff functions," in Proceedings of the Fourteenth International Conference on Artificial Intelligence and Statistics. JMLR Workshop and Conference Proceedings, 2011, pp. 208-214.
[15] D. P. Kingma and M. Welling, "Auto-encoding variational bayes," arXiv preprint arXiv:1312.6114, 2013.
[16] D. J. Rezende, S. Mohamed, and D. Wierstra, "Stochastic backpropagation and approximate inference in deep generative models," in International conference on machine learning. PMLR, 2014, pp. 1278-1286.
[17] A. Aubret, L. Matignon, and S. Hassas, "A survey on intrinsic motivation in reinforcement learning," arXiv preprint arXiv:1908.06976, 2019.
[18] Y. Burda, H. Edwards, A. Storkey, and O. Klimov, "Exploration by random network distillation," 2018.
[19] D. Pathak, P. Agrawal, A. A. Efros, and T. Darrell, "Curiosity-driven exploration by self-supervised prediction," in International conference on machine learning. PMLR, 2017, pp. 2778-2787.
[20] N. Savinov, A. Raichuk, R. Marinier, D. Vincent, M. Pollefeys, T. Lil-licrap, and S. Gelly, "Episodic curiosity through reachability," arXiv preprint arXiv:1810.02274, 2018.
[21] J. Fu, J. D. Co-Reyes, and S. Levine, "Ex2: Exploration with exemplar models for deep reinforcement learning," arXiv preprint arXiv:1703.01260, 2017.
[22] Y. Kim, W. Nam, H. Kim, J.-H. Kim, and G. Kim, "Curiosity-bottleneck: Exploration by distilling task-specific novelty," in International Conference onMachine Learning. PMLR, 2019, pp. 3379-3388.
[23] C. D. Barros, M. R. Mendonfa, A. B. Vieira, and A. Ziviani, "A survey on embedding dynamic graphs," arXiv preprint arXiv:2101.01229, vol. 2101.01229, 2021.
[24] D. Xu, C. Ruan, E. Korpeoglu, S. Kumar, and K. Achan, "Inductive representation learning on temporal graphs," arXiv preprint arXiv:2002.07962, vol. 2002.07962, 2020.
[25] Y. Wang, Y.-Y. Chang, Y. Liu, J. Leskovec, and P. Li, "Inductive representation learning in temporal networks via causal anonymous walks," arXiv preprint arXiv:2105.02315, vol. 2101.05974, 2021.
[26] X. Wang, D. Lyu, M. Li, Y. Xia, Q. Yang, X. Wang, X. Wang, P. Cui, Y. Yang, B. Sun et al., "APAN: Asynchronous propagation attention network for real-time temporal graph embedding," arXiv preprint arXiv:2011.11545, vol. 2011.11545, 2021.
[27] S. Wu, F. Sun, W. Zhang, X. Xie, and B. Cui, "Graph neural networks in recommender systems: a survey," ACM Computing Surveys (CSUR), 2020.
[28] I. Makarov, M. Makarov, and D. Kiselev, "Fusion of text and graph information for machine learning problems on networks," PeerJ Computer Science, vol. 7, no. e526, pp. 1-26, 2021.
[29] I. Makarov, O. Bulanov, and L. E. Zhukov, "Co-author recommender system," in International Conference on Network Analysis (NET'16), National Research University Higher School of Economics. Berlin, Germany: Springer, May 26-28 2016, pp. 251-257.
[30] I. Makarov, O. Bulanov, O. Gerasimova, N. Meshcheryakova, I. Karpov, and L. E. Zhukov, "Scientific matchmaker: Collaborator recommender system," in Proceedings of the 6th International Conference on Analysis of Images, Social Networks and Texts (AIST'17), ser. LNCS, Polytechnic University. Berlin, Germany: Springer, July 27-29 2017, pp. 404-410.
[31] I. Makarov, D. Kiselev, N. Nikitinsky, and L. Subelj, "Survey on graph em-beddings and their applications to machine learning problems on graphs," PeerJ Computer Science, no. e357, pp. 1-62, 2021.
[32] I. Makarov, O. Gerasimova, P. Sulimov, and L. E. Zhukov, "Recommending co-authorship via network embeddings and feature engineering:
The case of national research university higher school of economics," in Proceedings of the 18th ACM/IEEE on Joint Conference on Digital Libraries (JCDL'18), University of North Texas. New York, USA: ACM, June 03-06 2018, pp. 365-366.
[33] I. Makarov, O. Gerasimova, P. Sulimov, K. Korovina, and L. E. Zhukov, "Joint node-edge network embedding for link prediction," in Proceedings of the 7th International Conference on Analysis of Images, Social Networks and Texts (AIST'18), ser. LNCS, Polytechnic University. Berlin, Germany: Springer, July 05-07 2018, pp. 20-31.
[34] I. Makarov, O. Gerasimova, P. Sulimov, and L. E. Zhukov, "Co-authorship network embedding and recommending collaborators via network embedding," in Proceedings of the 7th International Conference on Analysis of Images, Social Networks and Texts (AIST'18), ser. LNCS, Polytechnic University. Berlin, Germany: Springer, July 05-07 2018, pp. 32-38.
[35] -, "Dual network embedding for representing research interests in
the link prediction problem on co-authorship networks," PeerJ Computer Science, vol. 5, no. e172, pp. 1-20, 2019.
[36] X. He, L. Liao, H. Zhang, L. Nie, X. Hu, and T.-S. Chua, "Neural collaborative filtering," in Proceedings of the 26th international conference on worldwide web, 2017, pp. 173-182.
[37] T. N. Kipf and M. Welling, "Semi-supervised classification with graph convolutional networks," arXiv preprint arXiv:1609.02907, vol. 1609.02907,2017.
[38] X. Wang, R. Wang, C. Shi, G. Song, and Q. Li, "Multi-component graph convolutional collaborative filtering," in Proceedings of the AAAI conference on artificial intelligence, vol. 34, no. 04, 2020, pp. 6267-6274.
[39] J. Yu, X. Xia, T. Chen, L. Cui, N. Q. V. Hung, and H. Yin, "Xsimgcl: Towards extremely simple graph contrastive learning for recommendation," arXiv preprint arXiv:2209.02544, 2022.
[40] C. Xu, P. Zhao, Y. Liu, V. S. Sheng, J. Xu, F. Zhuang, J. Fang, and X. Zhou, "Graph contextualized self-attention network for session-based recommendation." in IJCAI, vol. 19, 2019, pp. 3940-3946.
[41] P. Gupta, D. Garg, P. Malhotra, L. Vig, and G. M. Shroff, "Niser: normalized item and session representations with graph neural networks," arXiv preprint arXiv:1909.04276, 2019.
[42] C. Ma, L. Ma, Y. Zhang, J. Sun, X. Liu, and M. Coates, "Memory augmented graph neural networks for sequential recommendation," in Proceedings of the AAAI conference on artificial intelligence, vol. 34, no. 04, 2020, pp. 5045-5052.
[43] J. Wang, K. Ding, Z. Zhu, and J. Caverlee, "Session-based recommendation with hypergraph attention networks," CoRR, vol. abs/2112.14266, 2021.
[44] X. Xia, H. Yin, J. Yu, Q. Wang, L. Cui, and X. Zhang, "Self-supervised hypergraph convolutional networks for session-based recommendation," in Proceedings of the AAAI conference on artificial intelligence, vol. 35, no. 5, 2021, pp. 4503-4511.
[45] M. Zhang, S. Wu, X. Yu, Q. Liu, and L. Wang, "Dynamic graph neural networks for sequential recommendation," IEEE Transactions on Knowledge and Data Engineering, 2022.
[46] L. Yao, Z. Chu, S. Li, Y. Li, J. Gao, and A. Zhang, "A survey on causal inference," ACM Transactions on Knowledge Discovery from Data (TKDD), vol. 15, no. 5, pp. 1-46, 2021.
[47] L. Li, W. Chu, J. Langford, and X. Wang, "Unbiased offline evaluation of contextual-bandit-based news article recommendation algorithms," in Proceedings of the fourth ACM international conference on Web search and data mining, 2011, pp. 297-306.
[48] D. G. Horvitz and D. J. Thompson, "A generalization of sampling without replacement from a finite universe," Journal of the American statistical Association, vol. 47, no. 260, pp. 663-685, 1952.
[49] X. Wang, Y. Guo, and C. Xu, "Recommendation algorithms for optimizing hit rate, user satisfaction and website revenue," in Twenty-Fourth International Joint Conference on Artificial Intelligence, 2015.
[50] F. M. Harper and J. A. Konstan, "The movielens datasets: History and context," Acm transactions on interactive intelligent systems (tiis), vol. 5, no. 4, pp. 1-19, 2015.
[51] M. Schedl, "The lfm-1b dataset for music retrieval and recommendation," in Proceedings of the 2016 ACM on international conference on multimedia retrieval, 2016, pp. 103-110.
Обратите внимание, представленные выше научные тексты размещены для ознакомления и получены посредством распознавания оригинальных текстов диссертаций (OCR). В связи с чем, в них могут содержаться ошибки, связанные с несовершенством алгоритмов распознавания. В PDF файлах диссертаций и авторефератов, которые мы доставляем, подобных ошибок нет.