SkillAgentSearch skills...

KG20C

A Scholarly Knowledge Graph Benchmark Dataset

Install / Use

/learn @tranhungnghiep/KG20C

README

KG20C & KG20C-QA: Scholarly Knowledge Graph Benchmarks for Link Prediction and Question Answering

KG20C is a curated scholarly knowledge graph constructed from the Microsoft Academic Graph (MAG), covering authors, papers, venues, affiliations, domains, and citations from 20 top computer science conferences. It is designed as a benchmark dataset with standardized train/validation/test splits, following best practices similar to popular knowledge graph benchmarks such as WN18RR and FB15k-237.

KG20C-QA is a question answering benchmark built on top of KG20C. It provides both natural language questions and structured entity-relation queries on scholarly data. This design enables evaluation of both graph-based models (e.g., knowledge graph embeddings) and text-based models (e.g., large language models) under a unified benchmark setting.

Together, KG20C and KG20C-QA provide reusable, extensible benchmarks for research on link prediction, question answering, and reasoning over scholarly data. For a complete description of the dataset construction, schema, and evaluation baselines, please see our papers. Note: This repository currently provides the KG20C dataset. KG20C-QA will be released later.

<p align="center"> <img alt="KG20C graph" src="./KG20C_graph.png" width=600px> <br> <i><b>Figure 1:</b> Overview of the KG20C knowledge graph.</i> </p>

Dataset content (KG20C)

File format

All files are in tab-separated-values format, compatible with other popular benchmark datasets including WN18RR and FB15K-237. For example, train.txt includes "28674CFA author_in_affiliation 075CFC38", which denotes the author with id 28674CFA works in the affiliation with id 075CFC38.

The repo includes these files:

  • all_entity_info.txt contains id name type of all entities
  • all_relation_info.txt contains id of all relations
  • train.txt contains training triples of the form entity_1_id relation_id entity_2_id
  • valid.txt contains validation triples
  • test.txt contains test triples

Statistics

Data statistics of the KG20C knowledge graph:

Author | Paper | Conference | Domain | Affiliation :---: | :---: | :---: | :---: | :---: 8,680 | 5,047 | 20 | 1,923 | 692

Entities | Relations | Training triples | Validation triples | Test triples :---: | :---: | :---: | :---: | :---: 16,362 | 5 | 48,213 | 3,670 | 3,724

License

The dataset is free to use for research purpose. For other uses, please follow Microsoft Academic Graph license.

How to cite

If you found the datasets or our work useful, please cite us.

For the KG20C & KG20C-QA datasets and baseline results, please cite:

  • Hung-Nghiep Tran and Atsuhiro Takasu. KG20C & KG20C-QA: Scholarly Knowledge Graph Benchmarks for Link Prediction and Question Answering. arXiv:2512.21799v2, 2025. doi: 10.48550/arXiv.2512.21799.
    @misc{tran_kg20ckg20cqascholarly_2025,
      title = {{{KG20C}} \& {{KG20C-QA}}: {{Scholarly Knowledge Graph Benchmarks}} for {{Link Prediction}} and {{Question Answering}}},
      author = {Tran, Hung-Nghiep and Takasu, Atsuhiro},
      year = 2025,
      number = {arXiv:2512.21799},
      publisher = {arXiv},
      doi = {10.48550/arXiv.2512.21799},
      url = {http://arxiv.org/abs/2512.21799}
    }
    

For the semantic query method and preliminary results, please cite:

  • Hung-Nghiep Tran. Multi-Relational Embedding for Knowledge Graph Representation and Analysis. PhD Dissertation, The Graduate University for Advanced Studies, SOKENDAI, Japan, 2020.
    @phdthesis{tran_multirelationalembeddingknowledge_2020,
      address = {Japan},
      type = {{PhD} {Dissertation}},
      title = {Multi-{Relational} {Embedding} for {Knowledge} {Graph} {Representation} and {Analysis}},
      school = {The Graduate University for Advanced Studies, SOKENDAI},
      author = {Tran, Hung-Nghiep},
      year = {2020},
    }
    
  • Hung-Nghiep Tran and Atsuhiro Takasu. Exploring Scholarly Data by Semantic Query on Knowledge Graph Embedding Space. In Proceedings of International Conference on Theory and Practice of Digital Libraries (TPDL), 2019.
    @inproceedings{tran_exploringscholarlydata_2019,
      title = {Exploring {Scholarly} {Data} by {Semantic} {Query} on {Knowledge} {Graph} {Embedding} {Space}},
      booktitle = {Proceedings of the 23rd {International} {Conference} on {Theory} and {Practice} of {Digital} {Libraries}},
      author = {Tran, Hung-Nghiep and Takasu, Atsuhiro},
      year = {2019},
      pages = {154--162},
      url = {https://arxiv.org/abs/1909.08191},
    }
    

For the MEI and MEIM baseline knowledge graph embedding models, please cite:

  • Hung-Nghiep Tran and Atsuhiro Takasu. Multi-Partition Embedding Interaction with Block Term Format for Knowledge Graph Completion. In Proceedings of the European Conference on Artificial Intelligence (ECAI), 2020.
    @inproceedings{tran_multipartitionembeddinginteraction_2020,
      title = {Multi-{Partition} {Embedding} {Interaction} with {Block} {Term} {Format} for {Knowledge} {Graph} {Completion}},
      booktitle = {Proceedings of the {European} {Conference} on {Artificial} {Intelligence}},
      author = {Tran, Hung-Nghiep and Takasu, Atsuhiro},
      year = {2020},
      pages = {833--840},
      url = {https://arxiv.org/abs/2006.16365},
    }
    
  • Hung-Nghiep Tran and Atsuhiro Takasu. MEIM: Multi-partition Embedding Interaction Beyond Block Term Format for Efficient and Expressive Link Prediction. In Proceedings of the International Joint Conference on Artificial Intelligence (IJCAI), 2022.
    @inproceedings{tran_meimmultipartitionembedding_2022,
      title = {{MEIM}: {Multi}-partition {Embedding} {Interaction} {Beyond} {Block} {Term} {Format} for {Efficient} and {Expressive} {Link} {Prediction}},
      booktitle = {Proceedings of the {Thirty}-{First} {International} {Joint} {Conference} on {Artificial} {Intelligence}},
      author = {Tran, Hung-Nghiep and Takasu, Atsuhiro},
      year = {2022},
      pages = {2262--2269},
      url = {https://arxiv.org/abs/2209.15597},
    }
    

For the raw Microsoft Academic Graph dataset, please cite:

See also

  • AnalyzeKGE, preliminary experiments and analysis: https://github.com/tranhungnghiep/AnalyzeKGE
  • MEI-KGE, Multi-partition Embedding Interaction model: https://github.com/tranhungnghiep/MEI-KGE
View on GitHub
GitHub Stars22
CategoryDevelopment
Updated2mo ago
Forks1

Security Score

80/100

Audited on Jan 16, 2026

No findings