Skip to content

INK-USC/DArtNet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DArtNet

Paper: Temporal Attribute Prediction via Joint Modeling of Multi-Relational Structure Evolution

Summary: We propose a novel framework to incorporate the temporally-evolving knowledge graph information for time series prediction.

This repository contains the implementation of the DArtNet architectures described in the paper.

Time series prediction is an important problem in machine learning. Previous methods for time series prediction did not involve additional information. With a lot of dynamic knowledge graphs available, we can use this additional information to predict the time series better. Recently, there has been a focus on the application of deep representation learning on dynamic graphs. These methods predict the structure of the graph by reasoning over the interactions in the graph at previous time steps. In this paper, we propose a new framework to incorporate the information from dynamic knowledge graphs for time series prediction. We show that if the information contained in the graph and the time series data are closely related, then this inter-dependence can be used to predict the time series with improved accuracy. Our framework, DArtNet, learns a static embedding for every node in the graph as well as a dynamic embedding which is dependent on the dynamic attribute value (time-series). Then it captures the information from the neighborhood by taking a relation specific mean and encodes the history information using RNN. We jointly train the model link prediction and attribute prediction. We evaluate our method on five specially curated datasets for this problem and show a consistent improvement in time series prediction results.

Citation

If you use this paper or code, please cite our work as:

@inproceedings{ijcai2020-386,
  title     = {Temporal Attribute Prediction via Joint Modeling of Multi-Relational Structure Evolution},
  author    = {Garg, Sankalp and Sharma, Navodita and Jin, Woojeong and Ren, Xiang},
  booktitle = {Proceedings of the Twenty-Ninth International Joint Conference on
               Artificial Intelligence, {IJCAI-20}},
  publisher = {International Joint Conferences on Artificial Intelligence Organization},             
  pages     = {2785--2791},
  year      = {2020},
  month     = {7},
  doi       = {10.24963/ijcai.2020/386},
  url       = {https://doi.org/10.24963/ijcai.2020/386},
}

Quick Links

Organization

Following folders contain the scripts for processing, train and testing.

  • data - contains raw data used for the experiments.
  • models - contains implementations offrameowrks described in the paper.
    • contains sigle attribute and multi attribute implementation of our model.

Installation

Install PyTorch (>= 0.4.0) and DGL following the instuctions on the PyTorch and DGL. Our code is written in Python3.

Preprocessing

We need to process the data for fast loading before running the experiments.

cd data/DATA_NAME
python3 get_history_graph.py

Train and Test

Navigate to the experiment folder

cd models/Experiment

Training the model.

python3 train.py -d ../../data/DATA_SET --dataset DATA_SET --gpu 1 --model 1 --dropout 0.5 --n-hidden 200 --lr 1e-3 --max-epochs 2 --batch-size 500 --gamma 1 --retrain 0

Replace DATA_SET with agg, atg, cac_small, cac_large and mtg for different dataset.

Then validate the model on the validation set.

python3 validate.py -d ../../data/DATA_SET --dataset DATA_SET --gpu 1 --model 1 --dropout 0 --n-hidden 200 --batch-size 500 --gamma 1

From the stored results on the validation set, choose the best epoch to test.

python3 test.py -d ../../data/DATA_SET --dataset DATA_SET --gpu 1 --model 1 --dropout 0 --n-hidden 200 --batch-size 50 --gamma 1 --epoch EPOCH

About

Temporal Attribute Prediction via Joint Modeling of Multi-Relational Structure Evolution

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages