Skip to content

“Chorus” of recommendation models: a light and flexible PyTorch framework for Top-K recommendation.

License

Notifications You must be signed in to change notification settings

THUwangcy/ReChorus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

License

ReChorus2.0 is a modular and task-flexible PyTorch library for recommendation, especially for research purpose. It aims to provide researchers a flexible framework to implement various recommendation tasks, compare different algorithms, and adapt to diverse and highly-customized data inputs. We hope ReChorus2.0 can serve as a more convinient and user-friendly tool for researchers, so as to form a "Chorus" of recommendation tasks and algorithms.

The previous version of ReChorus can be found at ReChorus1.0

What's New in ReChorus2.0:

  • New Tasks: Newly supporting the context-aware top-k recommendation and CTR prediction task. Newly supporting the Impression-based re-ranking task.
  • New Models: Adding Context-aware Recommenders and Impression-based Re-ranking Models. Listed below.
  • New dataset format: Supporting various contextual feature input. Customizing candidate item lists in training and evaluation. Supporting variable length positive and negative samples.
  • Task Flexible: Each model can serve for different tasks, and task switching is conveniently achieved by altering model mode.

This framework is especially suitable for researchers to choose or implement desired experimental settings, and compare algorithms under the same setting. The characteristics of our framework can be summarized as follows:

  • Modular: primary functions modularized into distinct components: runner, model, and reader, facilitating code comprehension and integration of new features.

  • Swift: concentrate on your model design in a single file and implement new models quickly.

  • Efficient: multi-thread batch preparation, special implementations for the evaluation, and around 90% GPU utilization during training for deep models.

  • Flexible: implement new readers or runners for different datasets and experimental settings, and each model can be assigned with specific helpers.

Structure

Generally, ReChorus decomposes the whole process into three modules:

  • Reader: read dataset into DataFrame and append necessary information to each instance
  • Runner: control the training process and model evaluation, including evaluation metrics.
  • Model: define how to generate output (predicted labels or ranking scores) and prepare batches.

logo

Getting Started

  1. Install Anaconda with Python >= 3.5
  2. Clone the repository
git clone https://github.com/THUwangcy/ReChorus.git
  1. Install requirements and step into the src folder
cd ReChorus
pip install -r requirements.txt
cd src
  1. Run model with the build-in dataset
python main.py --model_name BPRMF --emb_size 64 --lr 1e-3 --l2 1e-6 --dataset Grocery_and_Gourmet_Food
  1. (optional) Run jupyter notebook in dataset folder to download and build new datasets, or prepare your own datasets according to Guideline in data

  2. (optional) Implement your own models according to Guideline in src

Tasks & Settings

The tasks & settings are listed below

Tasks Runner Metrics Loss Functions Reader BaseModel Models Model Modes
Top-k Recommendation BaseRunner HitRate NDCG BPR BaseReader BaseModel.GeneralModel general ''
SeqReader BaseModel.SequentialModel sequential ''
ContextReader BaseContextModel.ContextModel context 'TopK'
CTR Prediction CTRRunner BPR, BCE AUC Logloss ContextReader BaseContextModel.ContextCTRModel context 'CTR'
Impression-based Ranking ImpressionRunner HitRate NDCG MAP List-level BPR, Listnet loss, Softmax cross entropy loss, Attention rank ImpressionReader BaseImpressionModel.ImpressionModel general 'Impression'
ImpressionSeqReader BaseImpressionModel.ImpressionSeqModel sequential 'Impression'
ImpressionReader BaseRerankerModel.RerankModel reranker 'General'
ImpressionSeqReader BaseRerankerModel.RerankSeqModel reranker 'Sequential'

Arguments

The main arguments are listed below.

Args Default Description
model_name 'BPRMF' The name of the model class.
model_mode '' The task mode for the model to implement.
lr 1e-3 Learning rate.
l2 0 Weight decay in optimizer.
test_all 0 Wheter to rank all the items during evaluation.
metrics 'NDCG,HR' The list of evaluation metrics (seperated by comma).
topk '5,10,20' The list of K in evaluation metrics (seperated by comma).
num_workers 5 Number of processes when preparing batches.
batch_size 256 Batch size during training.
eval_batch_size 256 Batch size during inference.
load 0 Whether to load model checkpoint and continue to train.
train 1 Wheter to perform model training.
regenerate 0 Wheter to regenerate intermediate files.
random_seed 0 Random seed of everything.
gpu '0' The visible GPU device (pass an empty string '' to only use CPU).
buffer 1 Whether to buffer batches for dev/test.
history_max 20 The maximum length of history for sequential models.
num_neg 1 The number of negative items for each training instance.
test_epoch -1 Print test set metrics every test_epoch during training (-1: no print).

Models

We have implemented the following methods (still updating):

General Recommenders

Sequential Recommenders

Context-aware Recommenders

General Context-aware Recommenders

Sequential Context-aware Recommenders

Impression-based Re-ranking Models

Experimental results and corresponding configurations are shown in XXX.

Citation

If you find ReChorus is helpful to your research, please cite either of the following papers. Thanks!

@inproceedings{to be released,
  title={ReChorus2.0: A Modular and Task-Flexible Recommendation Library},
}

@inproceedings{wang2020make,
  title={Make it a chorus: knowledge-and time-aware item modeling for sequential recommendation},
  author={Wang, Chenyang and Zhang, Min and Ma, Weizhi and Liu, Yiqun and Ma, Shaoping},
  booktitle={Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval},
  pages={109--118},
  year={2020}
}
@article{王晨阳2021rechorus,
  title={ReChorus: 一个综合, 高效, 易扩展的轻量级推荐算法框架},
  author={王晨阳 and 任一 and 马为之 and 张敏 and 刘奕群 and 马少平},
  journal={软件学报},
  volume={33},
  number={4},
  pages={0--0},
  year={2021}
}

This is also our public implementation for the following papers (codes and datasets to reproduce the results can be found at corresponding branch):

git clone -b SIGIR20 https://github.com/THUwangcy/ReChorus.git
git clone -b TOIS21 https://github.com/THUwangcy/ReChorus.git
git clone -b TOIS22 https://github.com/THUwangcy/ReChorus.git
git clone -b CIKM22 https://github.com/THUwangcy/ReChorus.git

Contact

ReChorus 1.0: Chenyang Wang (THUwangcy@gmail.com)

ReChorus 2.0: Jiayu Li (lijiayu997@gmail.com), Hanyu Li (l-hy12@outlook.com)

About

“Chorus” of recommendation models: a light and flexible PyTorch framework for Top-K recommendation.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •