This is our TensorFlow implementation for the paper:
Wang-Cheng Kang, Mengting Wan, Julian McAuley (2018). Recommendation Through Mixtures of Heterogeneous Item Relationships. In Proceedings of ACM Conference on Information and Knowledge Management (CIKM'18)
Please cite our paper if you use the code or datasets.
The code is tested under a Linux desktop with TensorFlow 1.12.
The Automotive
from Amazon is included in the repo. All datasets (after pre-processing) can be downloaded from:
- Amazon Automotive
- Amazon Beauty
- Amazon Clothing
- Amazon Toys
- Amazon Games
- Google Local
- Steam (raw): reviews, game info (see here for more information)
A simple way to train our model is (with default hyper-parameters):
python main.py --dataset=Automotive
For the Automotive
dataset, the model should be converged in 600 epochs, you should be able to see the test AUC in the log file reach 0.8.
For more details (e.g. learning rate, regularizations, etc), please refer to the code.