SlideShare a Scribd company logo
Ho-Beom Kim
Network Science Lab
Dept. of Mathematics
The Catholic University of Korea
E-mail: hobeom2001@catholic.ac.kr
2023 / 07 / 27
CHANG, Jianxin, et al
ACM SIGIR
2
Introduction
Problem Statements
• The aforementioned works commonly concentrate more on user behaviors of recent times
→ They are not capable of fully mining older behavior-sequences to accurately estimate their current
interests.
• There two major challenges in sequential recommendation that have not been well-addressed so far
1. User behaviors in long sequences reflect implicit and noisy preference signals
2. User preferences are always drifting over time due to their diversity
 To address these two challenges, they propose a graph-based method with graph convolutional networks
to extract implicit preference signals
 Sequence  Graph
 Design a attentive graph convolutional network
 Dynamic pooling technique
3
Introduction
Contributions
• They approach sequential recommendation from a new perspective by taking into consideration the
implicit-signal behaviors and fast-changing preferences
• They Propose to aggregate implicit signals into explicit ones from user behaviors by designing graph
neural network-based models on constructed item-item interest graphs. Then they design dynamic-pooling
for filtering and reserving activated core preferences for recommendation
• They conduct extensive experiments on two large-scale datasets collected from real-world applications.
The experimental results show significant performance improvements compared with the state-of-the-art
methods of sequential recommendation. Further studies also verify that our method can model long
behavioral sequences effectively and efficiently
4
Methodology
SURGE model
5
Methodology
Interest Graph Construction (Raw graph consturction)
• 𝒢 = {𝒱, ℰ, 𝐴}
• Aim : Learn the adjacency matrix A
• By representing each user’s interaction history as a graph,
it is easier to distinguish core and peripheral interests
• The core interest node has a higher degree than the
peripheral interest node
• The higher frequency of similar interest results in a denser
and larger subgraph.
6
Methodology
Interest Graph Construction (Node similarity metric learning)
• The graph learning problem  node similarity metric
learning
• They adopt weighted cosine similarity
• 𝑀𝑖𝑗 = cos(𝑤 ⊙ ℎ𝑖, 𝑤 ⊙ ℎ𝑗)
• The learned graph structure changes continuously with the
update of item embeddings
• The similarity metric function  The multi-head metric
fucntion
→ Increase the expressive power and stabilize the
learning process
• 𝑀𝑖𝑗
𝛿
= cos 𝑤𝛿 ⊙ ℎ𝑖, 𝑤𝛿 ⊙ ℎ𝑗 , 𝑀𝑖𝑗 =
1
𝛿 𝛿=1
𝜙
𝑀𝑖𝑗
𝛿
7
Methodology
Interest Graph Construction (Graph sparsification via 𝜀- sparseness)
• They extract the symmetric sparse non-negative adjacency
matrix A from M by considering only the node pair with the
most vital connection.
• They adopt a relative ranking strategy of the entire graph
• They mask off those elements in M that are smaller than a
non-negative threshold, which is obtained by ranking the
metric value in M
• 𝐴𝑖𝑗
1, ≥ 𝑅𝑎𝑛𝑘𝜖𝑛2 𝑀 ;
0, 𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒;
8
Methodology
Interest-fusion Graph Convolutional Layer (Interest fusion via graph attentive convolution)
• They propose a cluster- and query-aware graph attentive
convolutional layer
• ℎ1, ℎ2, … , ℎ𝑛 , ℎ𝑖 ∈ ℝ𝑑
: The input
• ℎ1
′
, ℎ2
′
, … , ℎ𝑛
′
, ℎ𝑖 ∈ ℝ𝑑′
: The new node embedding matrix
• ℎ𝑖
′
= 𝜎(𝑊
𝑎 ∙ 𝐴𝑔𝑔𝑟𝑒𝑔𝑎𝑡𝑒 𝐸𝑖𝑗 ∗ ℎ𝑗|𝑗 ∈ 𝑁𝑖 + ℎ𝑖)
• ℎ𝑖
′
= ||𝛿=1
𝜙
𝜎 𝑊
𝑎
𝛿 ∙ 𝐴𝑔𝑔𝑟𝑒𝑔𝑎𝑡𝑒 𝐸𝑖𝑗
𝛿
∗ ℎ𝑗|𝑗 ∈ 𝑁𝑖 + ℎ𝑖
9
Methodology
Interest-fusion Graph Convolutional Layer(Cluster- and query-aware attention)
• They propose a cluster and query-aware attention
mechanism
• They uses the attention coefficients to redistribute weights
on edge information in the process of message passing
• 𝛼𝑖 = 𝐴𝑡𝑡𝑒𝑛𝑡𝑖𝑜𝑛𝑐 𝑊
𝑐ℎ𝑖 ℎ𝑖𝑐
𝑊
𝑐ℎ𝑖 ⊙ ℎ𝑖𝑐
• 𝛽𝑗 = 𝐴𝑡𝑡𝑒𝑛𝑡𝑖𝑜𝑛𝑞 𝑊
𝑞ℎ𝑗 ℎ𝑡 𝑊
𝑞ℎ𝑗 ⊙ ℎ𝑡
• 𝐸𝑖𝑗 = 𝑠𝑜𝑓𝑡𝑚𝑎𝑥 𝛼𝑖 + 𝛽𝑗 =
exp(𝛼𝑖+𝛽𝑗)
𝑘∈𝑁𝑖
exp(𝛼𝑖+𝛽𝑘)
10
Methodology
Interest-extraction Graph Pooling Layer(Interest extraction via graph pooling)
• Assuming that a soft cluster assignment matrix 𝑆 ∈
ℝ𝑛𝑋𝑀exists, it can pool node information  cluster
information
• m : pre-defined model hyperparameter that reflects the
degree of pooling
• ℎ1
∗
, ℎ2
∗
, … , ℎ𝑚
∗
= 𝑆𝑇
ℎ1
′
, ℎ2
′
, … , ℎ𝑛
′
,
• 𝛾1
∗
, 𝛾2
∗
, … , 𝛾𝑚
∗
= 𝑠𝑇
𝛾1, 𝛾2, … , 𝛾𝑛
• 𝑆𝑖: = 𝑠𝑜𝑓𝑡𝑚𝑎𝑥 𝑊
𝑝 ∙ 𝐴𝑔𝑔𝑟𝑒𝑔𝑎𝑡𝑒 𝐴𝑖𝑗 ∗ ℎ𝑗
′
|𝑗 ∈ 𝑁𝑖
11
Methodology
Interest-extraction Graph Pooling Layer(Assignment regularization)
• Same mapping regularization
• To make easier for two nodes with greater connection
strength to be mapped to the same cluster
• 𝐿𝑀 = 𝐴, 𝑆𝑆𝑇
𝐹
• Single affiliation regularization
• To clearly define the affiliation of each cluster
• 𝐿𝐴 =
1
𝑛 𝑖=1
𝑛
𝐻(𝑠𝑖:)
• Relative position regularization
• Design a position regularization to ensure the temporal
order between clusters during pooling
• 𝐿𝑃 = 𝑃𝑛𝑆, 𝑃𝑚 2
12
Methodology
Interest-extraction Graph Pooling Layer(Graph readout)
• ℎ𝑔 = 𝑅𝑒𝑎𝑑𝑜𝑢𝑡 𝛾𝑖 ∗ ℎ′
𝑖, 𝑖 ∈ 𝒢
13
Methodology
Prediction Layer (Interest evolution modeling)
• Under the joint influence of the external environment and
internal cognition, the user’s core interests are continually
evolving.
• From the relative position regularization, the pooled cluster
embedding matrix maintains the temporal order of the user’s
interest
• ℎ𝑠 = 𝐴𝑈𝐺𝑅𝑈 ℎ∗
1, ℎ∗
2, … , ℎ∗
𝑚
14
Methodology
Prediction Layer (Precition)
• 𝑦 = 𝑃𝑟𝑒𝑑𝑖𝑐𝑡 ℎ𝑠 ℎ𝑔 ℎ𝑡||ℎ𝑔 ⊙ ℎ𝑡
• 𝐿 ==
1
𝒪 𝑜∈𝒪 𝑦𝑜𝑙𝑜𝑔𝑦𝑜 + 1 − 𝑦𝑜 log(1 − 𝑦𝑜) + 𝜆 Θ 2
15
Experiment
RQ
• RQ1: How does the proposed method perform compared with state-of-the art sequential recommenders?
• RQ2: Can the proposed method be able to handle sequences with various length effectively and efficiently/
• RQ3: What is the effect of different components in the method?
16
Experiment
Experimental Settings - Dataset
• Taobao
• Kuaishou
Experimental Settings – Evaluation Metrics
• AUC
• GAUC
• MRR
• NDCG@K
17
Experiment
Experimental Settings – Baselines
• Non-sequential Models
• NCF
• DIN
• LightGCN
• Sequential Models
• Caser
• GRU4REC
• DIEN
• Sli-Rec
18
Experiment
Performance comparisons
19
Experiment
Performance breakdown by sequence lengths
20
Experiment
Test performance of the baselines by iterations on two datasets
21
Experiment
Total training time until convergence of baselines on two real-world datasets
22
Experiment
Ablation study of the key designs
23
Experiment
Performance comparison of the proposed method using different interest evolution layers
24
Conclusions And Future Work
Conclusions
• They studies the task of sequential recommender systems
• They propose a graph-based solution that re-constructs loose item sequences into tight item-item interest
graphs.
• Extensive experiments on both public and proprietary industrial datasets demonstrate the effectiveness of
their proposal
Future Work
• They plan to conduct A/B tests on the online system to further evaluate their proposed solution’s
recommendation performance
• They plan to consider using multiple types of behaviors, such as clicks and favorites, to explore fine-
grained multiple interactions from noisy historical sequences

More Related Content

Similar to 230727_HB_JointJournalClub.pptx

Master's Thesis Presentation
Master's Thesis PresentationMaster's Thesis Presentation
Master's Thesis Presentation
●๋•máńíکhá Gőýálツ
 
[Seminar] hyunwook 0624
[Seminar] hyunwook 0624[Seminar] hyunwook 0624
[Seminar] hyunwook 0624
ivaderivader
 
NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...
NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...
NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...
ssuser4b1f48
 
Ability Study of Proximity Measure for Big Data Mining Context on Clustering
Ability Study of Proximity Measure for Big Data Mining Context on ClusteringAbility Study of Proximity Measure for Big Data Mining Context on Clustering
Ability Study of Proximity Measure for Big Data Mining Context on ClusteringKamleshKumar394
 
Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...
Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...
Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...
ssuser2624f71
 
Scalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReduceScalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReducesscdotopen
 
final_project_1_2k21cse07.pptx
final_project_1_2k21cse07.pptxfinal_project_1_2k21cse07.pptx
final_project_1_2k21cse07.pptx
shwetabhagat25
 
[20240422_LabSeminar_Huy]Taming_Effect.pptx
[20240422_LabSeminar_Huy]Taming_Effect.pptx[20240422_LabSeminar_Huy]Taming_Effect.pptx
[20240422_LabSeminar_Huy]Taming_Effect.pptx
thanhdowork
 
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
thanhdowork
 
Computational Giants_nhom.pptx
Computational Giants_nhom.pptxComputational Giants_nhom.pptx
Computational Giants_nhom.pptx
ThAnhonc
 
introduction to machine learning 3c-feature-extraction.pptx
introduction to machine learning 3c-feature-extraction.pptxintroduction to machine learning 3c-feature-extraction.pptx
introduction to machine learning 3c-feature-extraction.pptx
Pratik Gohel
 
Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)
Taehoon Kim
 
Unsupervised Learning Clustering KMean and Hirarchical.pptx
Unsupervised Learning Clustering KMean and Hirarchical.pptxUnsupervised Learning Clustering KMean and Hirarchical.pptx
Unsupervised Learning Clustering KMean and Hirarchical.pptx
FaridAliMousa1
 
Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...
Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...
Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...
Maninda Edirisooriya
 
Cvpr 2018 papers review (efficient computing)
Cvpr 2018 papers review (efficient computing)Cvpr 2018 papers review (efficient computing)
Cvpr 2018 papers review (efficient computing)
DonghyunKang12
 
Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...
Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...
Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...
gabrielesisinna
 
NS-CUK Seminar: H.B.Kim, Review on "Inductive Representation Learning on Lar...
NS-CUK Seminar: H.B.Kim,  Review on "Inductive Representation Learning on Lar...NS-CUK Seminar: H.B.Kim,  Review on "Inductive Representation Learning on Lar...
NS-CUK Seminar: H.B.Kim, Review on "Inductive Representation Learning on Lar...
ssuser4b1f48
 
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
thanhdowork
 
ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...
ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...
ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...
Waqas Nawaz
 
NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...
NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...
NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...
ssuser4b1f48
 

Similar to 230727_HB_JointJournalClub.pptx (20)

Master's Thesis Presentation
Master's Thesis PresentationMaster's Thesis Presentation
Master's Thesis Presentation
 
[Seminar] hyunwook 0624
[Seminar] hyunwook 0624[Seminar] hyunwook 0624
[Seminar] hyunwook 0624
 
NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...
NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...
NS-CUK Joint Journal Club: THLee, Review on "Learning Conjoint Attentions for...
 
Ability Study of Proximity Measure for Big Data Mining Context on Clustering
Ability Study of Proximity Measure for Big Data Mining Context on ClusteringAbility Study of Proximity Measure for Big Data Mining Context on Clustering
Ability Study of Proximity Measure for Big Data Mining Context on Clustering
 
Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...
Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...
Weisfeiler and Leman Go Neural: Higher-order Graph Neural Networks, arXiv e-...
 
Scalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReduceScalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReduce
 
final_project_1_2k21cse07.pptx
final_project_1_2k21cse07.pptxfinal_project_1_2k21cse07.pptx
final_project_1_2k21cse07.pptx
 
[20240422_LabSeminar_Huy]Taming_Effect.pptx
[20240422_LabSeminar_Huy]Taming_Effect.pptx[20240422_LabSeminar_Huy]Taming_Effect.pptx
[20240422_LabSeminar_Huy]Taming_Effect.pptx
 
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
 
Computational Giants_nhom.pptx
Computational Giants_nhom.pptxComputational Giants_nhom.pptx
Computational Giants_nhom.pptx
 
introduction to machine learning 3c-feature-extraction.pptx
introduction to machine learning 3c-feature-extraction.pptxintroduction to machine learning 3c-feature-extraction.pptx
introduction to machine learning 3c-feature-extraction.pptx
 
Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)
 
Unsupervised Learning Clustering KMean and Hirarchical.pptx
Unsupervised Learning Clustering KMean and Hirarchical.pptxUnsupervised Learning Clustering KMean and Hirarchical.pptx
Unsupervised Learning Clustering KMean and Hirarchical.pptx
 
Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...
Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...
Lecture 11 - KNN and Clustering, a lecture in subject module Statistical & Ma...
 
Cvpr 2018 papers review (efficient computing)
Cvpr 2018 papers review (efficient computing)Cvpr 2018 papers review (efficient computing)
Cvpr 2018 papers review (efficient computing)
 
Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...
Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...
Deep Learning in Robotics: Robot gains Social Intelligence through Multimodal...
 
NS-CUK Seminar: H.B.Kim, Review on "Inductive Representation Learning on Lar...
NS-CUK Seminar: H.B.Kim,  Review on "Inductive Representation Learning on Lar...NS-CUK Seminar: H.B.Kim,  Review on "Inductive Representation Learning on Lar...
NS-CUK Seminar: H.B.Kim, Review on "Inductive Representation Learning on Lar...
 
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
240115_Thanh_LabSeminar[Don't walk, skip! online learning of multi-scale netw...
 
ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...
ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...
ICDE-2015 Shortest Path Traversal Optimization and Analysis for Large Graph C...
 
NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...
NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...
NS-CUK Seminar: S.T.Nguyen, Review on "Improving Graph Neural Network Express...
 

More from Network Science Lab, The Catholic University of Korea

S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"
S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"
S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"
Network Science Lab, The Catholic University of Korea
 
Technical Report on "Lecture Quality Prediction using Graph Neural Networks"
Technical Report on "Lecture Quality Prediction using Graph Neural Networks"Technical Report on "Lecture Quality Prediction using Graph Neural Networks"
Technical Report on "Lecture Quality Prediction using Graph Neural Networks"
Network Science Lab, The Catholic University of Korea
 
Presentation for "Lecture Quality Prediction using Graph Neural Networks"
Presentation for "Lecture Quality Prediction using Graph Neural Networks"Presentation for "Lecture Quality Prediction using Graph Neural Networks"
Presentation for "Lecture Quality Prediction using Graph Neural Networks"
Network Science Lab, The Catholic University of Korea
 
Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...
Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...
Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...
Network Science Lab, The Catholic University of Korea
 
Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...
Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...
Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...
Network Science Lab, The Catholic University of Korea
 
NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...
NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...
NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...
Network Science Lab, The Catholic University of Korea
 
NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...
NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...
NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...
Network Science Lab, The Catholic University of Korea
 

More from Network Science Lab, The Catholic University of Korea (20)

S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"
S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"
S.M.Lee, Invited Talk on "Machine Learning-based Anomaly Detection"
 
230724_Thuy_Labseminar.pptx
230724_Thuy_Labseminar.pptx230724_Thuy_Labseminar.pptx
230724_Thuy_Labseminar.pptx
 
230724-JH-Lab Seminar.pptx
230724-JH-Lab Seminar.pptx230724-JH-Lab Seminar.pptx
230724-JH-Lab Seminar.pptx
 
5강 - 멀티모달 및 모듈화.pptx
5강 - 멀티모달 및 모듈화.pptx5강 - 멀티모달 및 모듈화.pptx
5강 - 멀티모달 및 모듈화.pptx
 
3강 - CNN 및 이미지 모델.pptx
3강 - CNN 및 이미지 모델.pptx3강 - CNN 및 이미지 모델.pptx
3강 - CNN 및 이미지 모델.pptx
 
4강 - RNN 및 시계열 모델.pptx
4강 - RNN 및 시계열 모델.pptx4강 - RNN 및 시계열 모델.pptx
4강 - RNN 및 시계열 모델.pptx
 
2강 - 실험 흐름과 멀티모달 개요.pptx
2강 - 실험 흐름과 멀티모달 개요.pptx2강 - 실험 흐름과 멀티모달 개요.pptx
2강 - 실험 흐름과 멀티모달 개요.pptx
 
1강 - pytorch와 tensor.pptx
1강 - pytorch와 tensor.pptx1강 - pytorch와 tensor.pptx
1강 - pytorch와 tensor.pptx
 
Technical Report on "Lecture Quality Prediction using Graph Neural Networks"
Technical Report on "Lecture Quality Prediction using Graph Neural Networks"Technical Report on "Lecture Quality Prediction using Graph Neural Networks"
Technical Report on "Lecture Quality Prediction using Graph Neural Networks"
 
Presentation for "Lecture Quality Prediction using Graph Neural Networks"
Presentation for "Lecture Quality Prediction using Graph Neural Networks"Presentation for "Lecture Quality Prediction using Graph Neural Networks"
Presentation for "Lecture Quality Prediction using Graph Neural Networks"
 
NS-CUK Seminar: J.H.Lee, Review on "Graph Neural Networks with convolutional ...
NS-CUK Seminar: J.H.Lee, Review on "Graph Neural Networks with convolutional ...NS-CUK Seminar: J.H.Lee, Review on "Graph Neural Networks with convolutional ...
NS-CUK Seminar: J.H.Lee, Review on "Graph Neural Networks with convolutional ...
 
NS-CUK Seminar: V.T.Hoang, Review on "Are More Layers Beneficial to Graph Tra...
NS-CUK Seminar: V.T.Hoang, Review on "Are More Layers Beneficial to Graph Tra...NS-CUK Seminar: V.T.Hoang, Review on "Are More Layers Beneficial to Graph Tra...
NS-CUK Seminar: V.T.Hoang, Review on "Are More Layers Beneficial to Graph Tra...
 
NS-CUK Seminar: S.T.Nguyen Review on "Accurate learning of graph representati...
NS-CUK Seminar: S.T.Nguyen Review on "Accurate learning of graph representati...NS-CUK Seminar: S.T.Nguyen Review on "Accurate learning of graph representati...
NS-CUK Seminar: S.T.Nguyen Review on "Accurate learning of graph representati...
 
Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...
Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...
Joo-Ho Lee: Topographic-aware wind forecasting system using multi-modal spati...
 
Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...
Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...
Ho-Beom Kim: Detection of Influential Unethical Expressions through Construct...
 
NS-CUK Seminar: J.H.Lee, Review on "Hyperbolic graph convolutional neural net...
NS-CUK Seminar: J.H.Lee, Review on "Hyperbolic graph convolutional neural net...NS-CUK Seminar: J.H.Lee, Review on "Hyperbolic graph convolutional neural net...
NS-CUK Seminar: J.H.Lee, Review on "Hyperbolic graph convolutional neural net...
 
Sang_Graphormer.pdf
Sang_Graphormer.pdfSang_Graphormer.pdf
Sang_Graphormer.pdf
 
NS-CUK Seminar: S.T.Nguyen, Review on "Do Transformers Really Perform Bad for...
NS-CUK Seminar: S.T.Nguyen, Review on "Do Transformers Really Perform Bad for...NS-CUK Seminar: S.T.Nguyen, Review on "Do Transformers Really Perform Bad for...
NS-CUK Seminar: S.T.Nguyen, Review on "Do Transformers Really Perform Bad for...
 
NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...
NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...
NS-CUK Seminar: S.T.Nguyen, Review on "DeeperGCN: All You Need to Train Deepe...
 
NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...
NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...
NS-CUK Seminar: V.T.Hoang, Review on "Everything is Connected: Graph Neural N...
 

Recently uploaded

Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
Vlad Stirbu
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.
ViralQR
 

Recently uploaded (20)

Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.
 

230727_HB_JointJournalClub.pptx

  • 1. Ho-Beom Kim Network Science Lab Dept. of Mathematics The Catholic University of Korea E-mail: hobeom2001@catholic.ac.kr 2023 / 07 / 27 CHANG, Jianxin, et al ACM SIGIR
  • 2. 2 Introduction Problem Statements • The aforementioned works commonly concentrate more on user behaviors of recent times → They are not capable of fully mining older behavior-sequences to accurately estimate their current interests. • There two major challenges in sequential recommendation that have not been well-addressed so far 1. User behaviors in long sequences reflect implicit and noisy preference signals 2. User preferences are always drifting over time due to their diversity  To address these two challenges, they propose a graph-based method with graph convolutional networks to extract implicit preference signals  Sequence  Graph  Design a attentive graph convolutional network  Dynamic pooling technique
  • 3. 3 Introduction Contributions • They approach sequential recommendation from a new perspective by taking into consideration the implicit-signal behaviors and fast-changing preferences • They Propose to aggregate implicit signals into explicit ones from user behaviors by designing graph neural network-based models on constructed item-item interest graphs. Then they design dynamic-pooling for filtering and reserving activated core preferences for recommendation • They conduct extensive experiments on two large-scale datasets collected from real-world applications. The experimental results show significant performance improvements compared with the state-of-the-art methods of sequential recommendation. Further studies also verify that our method can model long behavioral sequences effectively and efficiently
  • 5. 5 Methodology Interest Graph Construction (Raw graph consturction) • 𝒢 = {𝒱, ℰ, 𝐴} • Aim : Learn the adjacency matrix A • By representing each user’s interaction history as a graph, it is easier to distinguish core and peripheral interests • The core interest node has a higher degree than the peripheral interest node • The higher frequency of similar interest results in a denser and larger subgraph.
  • 6. 6 Methodology Interest Graph Construction (Node similarity metric learning) • The graph learning problem  node similarity metric learning • They adopt weighted cosine similarity • 𝑀𝑖𝑗 = cos(𝑤 ⊙ ℎ𝑖, 𝑤 ⊙ ℎ𝑗) • The learned graph structure changes continuously with the update of item embeddings • The similarity metric function  The multi-head metric fucntion → Increase the expressive power and stabilize the learning process • 𝑀𝑖𝑗 𝛿 = cos 𝑤𝛿 ⊙ ℎ𝑖, 𝑤𝛿 ⊙ ℎ𝑗 , 𝑀𝑖𝑗 = 1 𝛿 𝛿=1 𝜙 𝑀𝑖𝑗 𝛿
  • 7. 7 Methodology Interest Graph Construction (Graph sparsification via 𝜀- sparseness) • They extract the symmetric sparse non-negative adjacency matrix A from M by considering only the node pair with the most vital connection. • They adopt a relative ranking strategy of the entire graph • They mask off those elements in M that are smaller than a non-negative threshold, which is obtained by ranking the metric value in M • 𝐴𝑖𝑗 1, ≥ 𝑅𝑎𝑛𝑘𝜖𝑛2 𝑀 ; 0, 𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒;
  • 8. 8 Methodology Interest-fusion Graph Convolutional Layer (Interest fusion via graph attentive convolution) • They propose a cluster- and query-aware graph attentive convolutional layer • ℎ1, ℎ2, … , ℎ𝑛 , ℎ𝑖 ∈ ℝ𝑑 : The input • ℎ1 ′ , ℎ2 ′ , … , ℎ𝑛 ′ , ℎ𝑖 ∈ ℝ𝑑′ : The new node embedding matrix • ℎ𝑖 ′ = 𝜎(𝑊 𝑎 ∙ 𝐴𝑔𝑔𝑟𝑒𝑔𝑎𝑡𝑒 𝐸𝑖𝑗 ∗ ℎ𝑗|𝑗 ∈ 𝑁𝑖 + ℎ𝑖) • ℎ𝑖 ′ = ||𝛿=1 𝜙 𝜎 𝑊 𝑎 𝛿 ∙ 𝐴𝑔𝑔𝑟𝑒𝑔𝑎𝑡𝑒 𝐸𝑖𝑗 𝛿 ∗ ℎ𝑗|𝑗 ∈ 𝑁𝑖 + ℎ𝑖
  • 9. 9 Methodology Interest-fusion Graph Convolutional Layer(Cluster- and query-aware attention) • They propose a cluster and query-aware attention mechanism • They uses the attention coefficients to redistribute weights on edge information in the process of message passing • 𝛼𝑖 = 𝐴𝑡𝑡𝑒𝑛𝑡𝑖𝑜𝑛𝑐 𝑊 𝑐ℎ𝑖 ℎ𝑖𝑐 𝑊 𝑐ℎ𝑖 ⊙ ℎ𝑖𝑐 • 𝛽𝑗 = 𝐴𝑡𝑡𝑒𝑛𝑡𝑖𝑜𝑛𝑞 𝑊 𝑞ℎ𝑗 ℎ𝑡 𝑊 𝑞ℎ𝑗 ⊙ ℎ𝑡 • 𝐸𝑖𝑗 = 𝑠𝑜𝑓𝑡𝑚𝑎𝑥 𝛼𝑖 + 𝛽𝑗 = exp(𝛼𝑖+𝛽𝑗) 𝑘∈𝑁𝑖 exp(𝛼𝑖+𝛽𝑘)
  • 10. 10 Methodology Interest-extraction Graph Pooling Layer(Interest extraction via graph pooling) • Assuming that a soft cluster assignment matrix 𝑆 ∈ ℝ𝑛𝑋𝑀exists, it can pool node information  cluster information • m : pre-defined model hyperparameter that reflects the degree of pooling • ℎ1 ∗ , ℎ2 ∗ , … , ℎ𝑚 ∗ = 𝑆𝑇 ℎ1 ′ , ℎ2 ′ , … , ℎ𝑛 ′ , • 𝛾1 ∗ , 𝛾2 ∗ , … , 𝛾𝑚 ∗ = 𝑠𝑇 𝛾1, 𝛾2, … , 𝛾𝑛 • 𝑆𝑖: = 𝑠𝑜𝑓𝑡𝑚𝑎𝑥 𝑊 𝑝 ∙ 𝐴𝑔𝑔𝑟𝑒𝑔𝑎𝑡𝑒 𝐴𝑖𝑗 ∗ ℎ𝑗 ′ |𝑗 ∈ 𝑁𝑖
  • 11. 11 Methodology Interest-extraction Graph Pooling Layer(Assignment regularization) • Same mapping regularization • To make easier for two nodes with greater connection strength to be mapped to the same cluster • 𝐿𝑀 = 𝐴, 𝑆𝑆𝑇 𝐹 • Single affiliation regularization • To clearly define the affiliation of each cluster • 𝐿𝐴 = 1 𝑛 𝑖=1 𝑛 𝐻(𝑠𝑖:) • Relative position regularization • Design a position regularization to ensure the temporal order between clusters during pooling • 𝐿𝑃 = 𝑃𝑛𝑆, 𝑃𝑚 2
  • 12. 12 Methodology Interest-extraction Graph Pooling Layer(Graph readout) • ℎ𝑔 = 𝑅𝑒𝑎𝑑𝑜𝑢𝑡 𝛾𝑖 ∗ ℎ′ 𝑖, 𝑖 ∈ 𝒢
  • 13. 13 Methodology Prediction Layer (Interest evolution modeling) • Under the joint influence of the external environment and internal cognition, the user’s core interests are continually evolving. • From the relative position regularization, the pooled cluster embedding matrix maintains the temporal order of the user’s interest • ℎ𝑠 = 𝐴𝑈𝐺𝑅𝑈 ℎ∗ 1, ℎ∗ 2, … , ℎ∗ 𝑚
  • 14. 14 Methodology Prediction Layer (Precition) • 𝑦 = 𝑃𝑟𝑒𝑑𝑖𝑐𝑡 ℎ𝑠 ℎ𝑔 ℎ𝑡||ℎ𝑔 ⊙ ℎ𝑡 • 𝐿 == 1 𝒪 𝑜∈𝒪 𝑦𝑜𝑙𝑜𝑔𝑦𝑜 + 1 − 𝑦𝑜 log(1 − 𝑦𝑜) + 𝜆 Θ 2
  • 15. 15 Experiment RQ • RQ1: How does the proposed method perform compared with state-of-the art sequential recommenders? • RQ2: Can the proposed method be able to handle sequences with various length effectively and efficiently/ • RQ3: What is the effect of different components in the method?
  • 16. 16 Experiment Experimental Settings - Dataset • Taobao • Kuaishou Experimental Settings – Evaluation Metrics • AUC • GAUC • MRR • NDCG@K
  • 17. 17 Experiment Experimental Settings – Baselines • Non-sequential Models • NCF • DIN • LightGCN • Sequential Models • Caser • GRU4REC • DIEN • Sli-Rec
  • 20. 20 Experiment Test performance of the baselines by iterations on two datasets
  • 21. 21 Experiment Total training time until convergence of baselines on two real-world datasets
  • 23. 23 Experiment Performance comparison of the proposed method using different interest evolution layers
  • 24. 24 Conclusions And Future Work Conclusions • They studies the task of sequential recommender systems • They propose a graph-based solution that re-constructs loose item sequences into tight item-item interest graphs. • Extensive experiments on both public and proprietary industrial datasets demonstrate the effectiveness of their proposal Future Work • They plan to conduct A/B tests on the online system to further evaluate their proposed solution’s recommendation performance • They plan to consider using multiple types of behaviors, such as clicks and favorites, to explore fine- grained multiple interactions from noisy historical sequences