EXIST 2024

Tags

Introduction

Score prediction task

Given known subject-item preferences, predict new subject-item preferences. Formally, let UU a set of all subjects UU and VV a set of all items, our core task it is to find a real-valued scalar function score(u,v)score(u,v) where uUu\in U and vVv \in V. To provide a hard label or multi labels, kk subjects vote with their encoded scores. Hence, we’ve reduced our problem into a score prediction problem.

For instance, the below table illustrates a complete utility matrix with known score entries f(u,v)f(u,v) where 0 represents the label “NO” and 1 represents the label “YES”. In this case, the voting policy selects the class annotated by more than 3 subjects.

V1V_1V2V_2V3V_3
U1U_1101
U2U_2011
U3U_3100
U4U_4111
U5U_5000
U6U_6100
Voting10Undefined
LabelYESNO

There are different methods such as memory-based CF, model-based CF, Neural CF, GCN-based CF.

Task 2.

score(u,v)=0    score(u,v)=0 \implies NO

score(u,v)=1    score(u,v)=1 \implies Direct

score(u,v)=2    score(u,v)=2 \implies Judgemental

Task 3.

score(u,v)=0b000001    score(u,v)=0b000001 \implies -

score(u,v)=0b000010    score(u,v)=0b000010 \implies {IDEOLOGICAL-INEQUALITY}

score(u,v)=0b000100    score(u,v)=0b000100 \implies {MISOGYNY-NON-SEXUAL-VIOLENCE}

score(u,v)=0b000100b00001=0b00011    score(u,v)=0b00010|0b00001=0b00011\implies{-, IDEOLOGICAL-INEQUALITY}

Embedding-based models

We consider embedding-based models for scoring. For each user uUu\in U, let uRDu \in \mathbb{R^D} for its DD-dimensional embedding. For each item vVv\in V, let vRDv \in \mathbb{R}^D be its DD-dimensional embedding. So, score(u,v)f:RD×RDRscore(u,v) \equiv f: \mathbb{R}^D \times \mathbb{R}^D \to \mathbb{R}.

Neural Graph Collaborative Filtering, Matrix are learnable collaborative filter models how to aggregate neighboring embeddings.

MF.

Factorization Machines.

Neighborhood methods.

Cold Start.

Latent factor methods.

latent factors of new users and items.

Beyond the scope of this paper.

Task 1

Task 2

Task 3

Task 4

Task 5

Task 6

References

https://ceur-ws.org/Vol-3740/paper-97.pdf

Large Language Models for Recommendation: Progresses and Future Directions

Keqin Bao, Jizhi Zhang, Yang Zhang, Wenjie Wang, Fuli Feng & Xiangnan He SIGIR-AP 2023    WWW 2024

https://www.youtube.com/watch?v=OV2VUApLUio