cjh0507 / BiVE

Code for "Learning Representations of Bi-Level Knowledge Graphs for Reasoning beyond Link Prediction (AAAI 2023)"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BiVE: Learning Representations of Bi-level Knowledge Graphs for Reasoning beyond Link Prediction

This code is an implementation of the following paper:

Chanyoung Chung and Joyce Jiyoung Whang, Learning Representations of Bi-level Knowledge Graphs for Reasoning beyond Link Prediction, AAAI Conference on Artificial Intelligence (AAAI), 2023.

This code is based on the OpenKE implementation, which is an open toolkit for knowledge graph embedding. Additional codes are written by Chanyoung Chung (chanyoung.chung@kaist.ac.kr).

When you use this code or data, please cite our paper.

@article{bive,
  author={Chanyoung Chung and Joyce Jiyoung Whang},
  title={Learning Representations of Bi-level Knowledge Graphs for Reasoning beyond Link Prediction}, 
  year={2023},
  journal={arXiv preprint arXiv:2302.02601},
  doi={10.48550/arXiv.2302.02601}
}

Usage

Data Augmentation by Random Walks

Use augment.py to perform data augmentation.

python augment.py [data] [conf]
  • [data]: name of the dataset. The name should be the directory name of the dataset contained in the ./benchmarks folder.
  • [conf]: threshold of the confidence score, i.e., $\tau$ in the paper.

BiVE

To train BiVE-Q, use bive_q.py.

CUDA_VISIBLE_DEVICES=0 python bive_q.py [data] [learning_rate] [regul_rate] [epoch] --meta [weight_high] --aug [weight_aug] --lp/tp/clp

To train BiVE-B, use bive_b.py.

CUDA_VISIBLE_DEVICES=0 python bive_b.py [data] [learning_rate] [regul_rate] [epoch] --meta [weight_high] --aug [weight_aug] --lp/tp/clp

About

Code for "Learning Representations of Bi-Level Knowledge Graphs for Reasoning beyond Link Prediction (AAAI 2023)"


Languages

Language:Python 71.8%Language:C 15.3%Language:C++ 12.8%Language:Shell 0.1%