zhenjia2017 / EXAQT

Code for our CIKM'21 paper "Complex Temporal Qestion Answering on Knowledge Graphs"
https://exaqt.mpi-inf.mpg.de/
31 stars 14 forks source link

Only 6970 train questions in data/dictionaries/train_subgraph.json #2

Closed apoorvumang closed 2 years ago

apoorvumang commented 2 years ago

I just noticed that data/dictionaries/train_subgraph.json contains only 6970 questions rather than 9708 as mentioned in the paper. Test and dev_subgraph contain the correct number of questions. However data/TimeQuestions/train.json does contain all 9708 questions.

Where can I obtain the answer graphs for the remaining train questions?

Thanks

zhenjia2017 commented 2 years ago

The questions without ground truth in the subgraph were removed. In the code get_relational_graph.py, line 421-422, if do not use "if data['id'] in good_questions or data['id'] in ok_questions:", the subgraphs of all the questions in the training set will be generated.

apoorvumang commented 2 years ago

Got it, thanks!