Skip to content

zjunlp/RAP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RAP

Code for the SIGIR2023 paper "Schema-aware Reference as Prompt Improves Data-Efficient Knowledge Graph Construction".

Requirements

Java 8 # for elasticsearch
elasticsearch==7.17.1

Retrieving for Reference

The reference store can be downloaded from here. Unzip the file and put the folder store/ into retrieval/ folder, and the final directory structure is as follows:

retrieval
├── store/
├── retrieve.py
└── retrieve_utils.py

For different base models, you can generate the reference by following codes:

cd retrieval/ 
python retrieve.py --base_model prgc

The parameter --base_model is for different base models, we can change it in prgc, relationprompt, t2e, degree.

For Text2Event and DEGREE, please follow the instruction README.md document in their corresponding folder to preprocess the datasets, and then generate the retrieved reference.

BaseModel

We plugged RAP to several base models, which can be seen in the folders below:

BaseModel
├── DEGREE
├── PRGC
├── RelationPrompt
└── Text2Event

The code of above base models are borrowed from their original codes with slight modifacations.

DEGREE : Please follow the instruction here.

PRGC : Please follow the instruction here.

RelationPrompt : Please follow the instruction here.

Text2Event : Please follow the instruction here.