Skip to content
forked from bdi-lab/BiVE

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

Notifications You must be signed in to change notification settings

jaejunlee714/BiVE

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

This code is an implementation of the paper, "Learning Representations of Bi-Level Knowledge Graphs for Reasoning beyond Link Prediction (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.

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.

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)"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 78.2%
  • C 11.8%
  • C++ 9.9%
  • Shell 0.1%