This is the PyTorch implementation by @Re-bin for RLMRec model proposed in this paper:
Representation Learning with Large Language Models for Recommendation
Xubin Ren, Wei Wei, Lianghao Xia, Lixin Su, Suqi Cheng, Junfeng Wang, Dawei Yin, Chao Huang*
* denotes corresponding author
In this paper, we propose a model-agnostic framework RLMRec that aims to enhance existing recommenders with LLM-empowered representation learning. It proposes a recommendation paradigm that integrates representation learning with LLMs to capture intricate semantic aspects of user behaviors and preferences. RLMRec incorporates auxiliary textual signals, develops a user/item profiling paradigm empowered by LLMs, and aligns the semantic space of LLMs with the representation space of collaborative relational signals through a cross-view alignment framework.
Run the following commands to create a conda environment:
conda create -y -n rlmrec python=3.9
conda activate rlmrec
pip install torch==1.13.1+cu116 torchvision==0.14.1+cu116 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu116
pip install torch-scatter -f https://data.pyg.org/whl/torch-1.13.1+cu117.html
pip install torch-sparse -f https://data.pyg.org/whl/torch-1.13.1+cu117.html
pip install pyyaml tqdm😉 The codes are developed based on the SSLRec framework.
We utilized three public datasets to evaluate RLMRec: Amazon-book, Yelp, and Steam.
First of all, please unzip the data by running following commands.
cd data/
cat data.tar.gz0* > data.tar.gz
tar zxvf data.tar.gz
Each dataset consists of a training set, a validation set, and a test set. During the training process, we utilize the validation set to determine when to stop the training in order to prevent overfitting.
- amazon(yelp/steam)
|--- trn_mat.pkl
|--- val_mat.pkl
|--- tst_mat.pkl
|--- usr_prf.pkl
|--- itm_prf.pkl
|--- usr_emb_np.pkl
|--- itm_emb_np.pkl
- Both user and item profiles are generated from Large Language Models from raw text data.
- The
user profile(saved inusr_prf.pkl) shows the particular types of items that the user tends to prefer. - The
item profile(saved initm_prf.pkl) articulates the specific types of users that the item is apt to attract.
😊 You can run the code python data/read_profile.py as an example to read the profiles as follows.
$ python data/read_profile.py
User 123's Profile:
PROFILE: Based on the kinds of books the user has purchased and reviewed, they are likely to enjoy historical
fiction with strong character development, exploration of family dynamics, and thought-provoking themes. The user
also seems to enjoy slower-paced plots that delve deep into various perspectives. Books with unexpected twists,
connections between unrelated characters, and beautifully descriptive language could also be a good fit for
this reader.
REASONING: The user has purchased several historical fiction novels such as 'Prayers for Sale' and 'Fall of
Giants' which indicate an interest in exploring the past. Furthermore, the books they have reviewed, like 'Help
for the Haunted' and 'The Leftovers,' involve complex family relationships. Additionally, the user appreciates
thought-provoking themes and character-driven narratives as shown in their review of 'The Signature of All
Things' and 'The Leftovers.' The user also enjoys descriptive language, as demonstrated in their review of
'Prayers for Sale.'
- Each user and item has a semantic embedding encoded from its own profile using Text Embedding Models.
- The encoded semantic embeddings are stored in
usr_emb_np.pklanditm_emb_np.pkl.
🤗 Welcome to use our processed data to improve your research!
The command to evaluate the backbone models and RLMRec is as follows.
-
Backbone
python encoder/train_encoder.py --model {model_name} --dataset {dataset} --cuda 0 -
RLMRec-Con (Constrastive Alignment):
python encoder/train_encoder.py --model {model_name}_plus --dataset {dataset} --cuda 0 -
RLMRec-Gen (Generative Alignment):
python encoder/train_encoder.py --model {model_name}_gene --dataset {dataset} --cuda 0
Supported models/datasets:
- model_name:
gccf,lightgcn,sgl,simgcl,dccf,autocf - dataset:
amazon,yelp,steam
Hypeparameters:
- The hyperparameters of each model are stored in
encoder/config/modelconf(obtained by grid-search).
For advanced usage of arguments, run the code with --help argument.
Thanks for your interest in our work.
If you find this work is helpful to your research, please consider citing our paper:
@article{ren2023representation,
title={Representation Learning with Large Language Models for Recommendation},
author={Ren, Xubin and Wei, Wei and Xia, Lianghao and Su, Lixin and Cheng, Suqi and Wang, Junfeng and Yin, Dawei and Huang, Chao},
journal={arXiv preprint arXiv:2310.15950},
year={2023}
}
