MBGen models the multi-behavior sequential recommendation problem in a novel generative manner.
See our paper: Multi-Behavior Generative Recommendation
Multi-behavior sequential recommendation (MBSR) aims to incorporate behavior types of interactions for better recommendations. Existing approaches focus on the next-item prediction objective, neglecting the value of integrating the target behavior type into the learning objective. In this paper, we propose MBGen, a novel Multi-Behavior sequential Generative recommendation framework. We formulate the MBSR task into a consecutive two-step process: (1) given item sequences, MBGen first predicts the next behavior type to frame the user intention, (2) given item sequences and a target behavior type, MBGen then predicts the next items. To model such a two-step process, we tokenize both behaviors and items into tokens and construct one single token sequence with both behaviors and items placed interleaved. Furthermore, MBGen learns to autoregressively generate the next behavior and item tokens in a unified generative recommendation paradigm, naturally enabling a multi-task capability. Additionally, we exploit the heterogeneous nature of token sequences in the generative recommendation and propose a position-routed sparse architecture to efficiently and effectively scale up models. Extensive experiments on public datasets demonstrate that MBGen significantly outperforms existing MBSR models across multiple tasks.
Download datasets from here and put the datasets into ./data/raw_dataset/
Generated item IDs are located in ./tokenizer/ID/
. To generate a new set of item IDs, encode the prior of items into embeddings (through pre-trained embedding models/embedding table of pre-trained sequential recommendation models) and save the generated embedding as a tensor of size num_items * embedding_dim
into ./tokenizer/embedding.pkl
.
To train the model with Retail dataset
python run.py --config=./config/main/retail/main.yaml
To train the model with IJCAI dataset
python run.py --config=./config/main/ijcai/main.yaml --dataset=ijcai
Please cite the following paper if you find our code helpful.
@article{liu2024multibehavior,
title={Multi-Behavior Generative Recommendation},
author={Zihan Liu and Yupeng Hou and Julian McAuley},
year={2024},
journal={arXiv preprint arXiv:2405.16871},
}