xhd0728 nielsr HF Staff commited on
Commit
ee7762f
·
verified ·
1 Parent(s): 3c2bb2a

Improve model card: add pipeline tag, library name, tags, description, and links (#1)

Browse files

- Improve model card: add pipeline tag, library name, tags, description, and links (07377842a4504819c634eb8c38e1d2ca8f0f75e8)


Co-authored-by: Niels Rogge <[email protected]>

Files changed (1) hide show
  1. README.md +45 -4
README.md CHANGED
@@ -1,11 +1,52 @@
1
  ---
2
- license: mit
 
3
  language:
4
  - en
 
5
  metrics:
6
  - recall
7
- base_model:
8
- - google-t5/t5-base
 
 
 
9
  ---
10
 
11
- https://arxiv.org/pdf/2505.22130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model:
3
+ - google-t5/t5-base
4
  language:
5
  - en
6
+ license: mit
7
  metrics:
8
  - recall
9
+ pipeline_tag: text-retrieval
10
+ library_name: transformers
11
+ tags:
12
+ - recommendation
13
+ - sequential-recommendation
14
  ---
15
 
16
+ # LISRec: Modeling User Preferences with Learned Item Shortcuts for Sequential Recommendation
17
+
18
+ This repository provides the model weights and source code for the paper [LISRec: Modeling User Preferences with Learned Item Shortcuts for Sequential Recommendation](https://huggingface.co/papers/2505.22130).
19
+
20
+ **LISRec** is a novel framework for sequential recommendation that addresses noisy user-item interaction histories by explicitly capturing stable preferences. It achieves this by extracting personalized semantic shortcuts from historical interactions, leveraging task-agnostic semantic representations to assess item similarities, and constructing a personalized semantic graph. By identifying the maximal semantic connectivity subset, LISRec selects representative items as semantic shortcuts to guide user preference modeling, filtering out irrelevant actions while preserving genuine interests. LISRec demonstrates strong generalization capabilities by enhancing both item ID-based and text-based recommendation models, achieving a 13% improvement over baseline recommendation models on Yelp and Amazon Product datasets.
21
+
22
+ Find the code and further details on the official [GitHub repository](https://github.com/NEUIR/LISRec).
23
+
24
+ ## Model Overview
25
+ LISRec addresses the challenge of noisy data in sequential recommendation by constructing a user-interacted item graph. It leverages item similarities derived from their text representations to extract the maximum connected subgraph, effectively denoising the items a user has interacted with.
26
+
27
+ <div align="center">
28
+ <img src="https://github.com/NEUIR/LISRec/raw/main/figs/model.jpg" alt="LISRec Model Overview" width="700"/>
29
+ </div>
30
+
31
+ ## Installation
32
+ The `LISRec` codebase requires several Python packages and `OpenMatch`. For detailed instructions on setting up the environment, downloading pretrained T5 weights, and installing `OpenMatch`, please refer to the [official GitHub repository](https://github.com/NEUIR/LISRec).
33
+
34
+ ## Acknowledgement
35
+ This work builds upon and acknowledges:
36
+ - [OpenMatch](https://github.com/OpenMatch/OpenMatch): Utilized to reproduce the $\text{M}_{Rec}$ module.
37
+ - [Recbole](https://github.com/RUCAIBox/RecBole): Leveraged for dataset processing and baseline reproduction.
38
+
39
+ ## Citation
40
+ If you find this work useful, please cite our paper:
41
+ ```bibtex
42
+ @inproceedings{xin2026lisrec,
43
+ title={LISRec: Modeling User Preferences with Learned Item Shortcuts for Sequential Recommendation},
44
+ author={Xin, Haidong and Liu, Zhenghao and Mei, Sen and Yan, Yukun and Yu, Shi and Wang, Shuo and Xiong, Chenyan and Gu, Yu and Yu, Ge and Xiong, Chenyan},
45
+ year={2026},
46
+ url={}
47
+ }
48
+ ```
49
+
50
+ ## Contact
51
+ For questions, suggestions, or bug reports, please contact:
52