Skip to content

yimutianyang/AGCN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AGCN-SIGIR2020

Joint Item Recommendation and Attribute Inference: An Adaptive Graph Convolutional Network Approach

In many recommender systems, users and items are associated with attributes, and users show preferences to items. The attribute information describes users’ (items’) characteristics and has a wide range of applications, such as user profiling, item annotation, and feature enhanced recommendation. In practice, the attribute values are often incomplete with many missing attribute values. Therefore, item recommendation and attribute inference have become two main tasks in these platforms. In this paper, we define these two tasks in an attributed user-item bipartite graph, and propose an Adaptive Graph Convolutional Network (AGCN) approach for joint item recommendation and attribute inference. The key idea of AGCN is to iteratively perform two parts: 1) Learning graph embedding parameters with previously learned approximated attribute values to facilitate item recommendation and attribute inference update; 2) Sending the approximated updated attribute values back to the attributed graph for better graph embedding learning. Therefore, AGCN could adaptively adjust the graph embedding learning parameters by incorporating both the given attributes and the estimated attribute values, in order to provide weakly supervised information to refine the two tasks. Extensive experimental results clearly show the effectiveness of the proposed model.

We provide Tensorflow implementations of proposed AGCN model on the Movielens-20M dataset.

Prerequisites

  • Tensorflow 1.9.0
  • Python 3.6
  • NVIDIA GPU + CUDA CuDNN

Usage

  • Dataset:
    Under the data folder(cd ./data)
  • Item Recommendation Task:
    cd ./code
    python train_task1.py
    python test_task1.py
  • Attributes Inference Task:
    cd ./code
    python task2.py

Citation

If you find this useful for your research, please kindly cite the following paper:

@article{AGCN2020,
  title={Joint Item Recommendation and Attribute Inference: An Adaptive Graph Convolutional Network Approach},
  author={Le Wu, Yonghui Yang, Kun Zhang, Richang Hong, Yanjie Fu and Meng Wang}
  jconference={43nd International ACM SIGIR Conference on Research and Development in Information Retrieval},
  year={2020}
}

Author contact:

Email: yyh.hfut@gmail.com