Papers › Preference Diffusion for Recommendation

Preference Diffusion for Recommendation

17 Oct 2024arXiv:2410.13117archive 2025-07-28

Shuo Liu, An Zhang, Guoqing Hu, Hong Qian, Tat-Seng Chua

Recommender systems predict personalized item rankings based on user preference distributions derived from historical behavior data. Recently, diffusion models (DMs) have gained attention in recommendation for their ability to model complex distributions, yet current DM-based recommenders often rely on traditional objectives like mean squared error (MSE) or recommendation objectives, which are not optimized for personalized ranking tasks or fail to fully leverage DM's generative potential. To address this, we propose PreferDiff, a tailored optimization objective for DM-based recommenders. PreferDiff transforms BPR into a log-likelihood ranking objective and integrates multiple negative samples to better capture user preferences. Specifically, we employ variational inference to handle the intractability through minimizing the variational upper bound and replaces MSE with cosine error to improve alignment with recommendation tasks. Finally, we balance learning generation and preference to enhance the training stability of DMs. PreferDiff offers three key benefits: it is the first personalized ranking loss designed specifically for DM-based recommenders and it improves ranking and faster convergence by addressing hard negatives. We also prove that it is theoretically connected to Direct Preference Optimization which indicates that it has the potential to align user preferences in DM-based recommenders via generative modeling. Extensive experiments across three benchmarks validate its superior recommendation performance and commendable general sequential recommendation capabilities. Our codes are available at https://github.com/lswhim/PreferDiff.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2410.13117")

Code

Syntology Ran 15 of 19 code samples harvested from 1 repository linked to this paper; 4 have no recorded run. Of those that ran: 4 ran · honoured contract; 2 ran · our draft was wrong; 2 ran · fixture could not drive it; 7 ran with no contract checked.

By repository: official repository: 15 samples from 1 repository, 11 ran; 4 identical to code first harvested elsewhere. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

lswhim/preferdiff officialmentioned in paperpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

19 samples harvested; 15 ran; 4 honoured the contract we drafted; 4 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

4ran · honoured contract
2ran · our draft was wrong
2ran · fixture could not drive it
7ran
4unverified

Licence: 19 of the 19 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from lswhim/preferdiff. Some samples are identical code Syntology first harvested from another repository; for those, this paper's copy is not located and its licence is not recorded. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

AbstractModel lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · metamorphic tier: deterministic no licence file found · pointer only · 9cee7b29292819c9 · report
BaseDiffusion lswhim/preferdiff/models/PreferDiff/_model.py official repository ran no licence file found · pointer only · 94f2a9e6aa1676eb · report
MultiHeadAttention lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · metamorphic tier: deterministic no licence file found · pointer only · 63814a6938fa994f · report
PositionwiseFeedForward lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · metamorphic tier: deterministic no licence file found · pointer only · 89f25d4ab4d600e3 · report
SinusoidalPositionEmbeddings lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · metamorphic tier: deterministic fingerprinted no licence file found · pointer only · 2b5245040c13c182 · report
TransformerEncoder lswhim/preferdiff/models/PreferDiff/_model.py official repository ran no licence file found · pointer only · f63384aa09f6504a · report
diagonalize_and_scale lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · our draft was wrong fingerprinted no licence file found · pointer only · 3cc2ff4c20cc6053 · report
exp_beta_schedule lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · honoured contract no licence file found · pointer only · 2c8cfbc6db313670 · report
extract_axis_1 lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · fixture could not drive it no licence file found · pointer only · dc3094c7e25c1afa · report
in_batch_negative_sampling_sample lswhim/preferdiff/models/PreferDiff/_model.py official repository ran · our draft was wrong no licence file found · pointer only · 4675e6612ba76877 · report
parse_command_line_args lswhim/PreferDiff/utils.py official repository ran no licence file found · pointer only · 351f47117a6acd3b · report
PreferDiff lswhim/preferdiff/models/PreferDiff/_model.py official repository unverified no licence file found · pointer only · 5d6aca7f0ee74315 · report
PreferenceDiffusion lswhim/preferdiff/models/PreferDiff/_model.py official repository unverified no licence file found · pointer only · 7d68851af1d4f86e · report
SASRec lswhim/preferdiff/models/PreferDiff/_model.py official repository unverified no licence file found · pointer only · c250ef81a5f76f3c · report
in_batch_negative_sampling lswhim/preferdiff/models/PreferDiff/_model.py official repository unverified no licence file found · pointer only · 3d3f56b8afc1b831 · report
betas_for_alpha_bar identical code first harvested elsewhere ran · honoured contract licence of this copy not recorded · 6cdc8772f5db6f48 · report
cosine_beta_schedule identical code first harvested elsewhere ran · honoured contract fingerprinted licence of this copy not recorded · 3a6233722b4f0cd6 · report
extract identical code first harvested elsewhere ran · fixture could not drive it licence of this copy not recorded · df116dde4bb6ab3e · report
linear_beta_schedule identical code first harvested elsewhere ran · honoured contract fingerprinted licence of this copy not recorded · 4b3d941e8a7485c5 · report

Tasks

Recommendation SystemsSequential RecommendationVariational Inference

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

ALIGNAttentionDiffusionSoftmaxVariational Inference

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections