PeterJinGo commited on
Commit
bdf910f
1 Parent(s): 8b72e37

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -1
README.md CHANGED
@@ -10,4 +10,97 @@ tags:
10
  - biology
11
  - legal
12
  - medical
13
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  - biology
11
  - legal
12
  - medical
13
+ ---
14
+ # GRBench
15
+
16
+ <!-- Provide a quick summary of the dataset. -->
17
+
18
+ GRBench is a comprehensive benchmark dataset to support the development of methodology and facilitate the evaluation of the proposed models for Augmenting Large Language Models with External Textual Graphs.
19
+
20
+ <p align="center">
21
+ <img src="fig/intro.png" width="400px"/>
22
+ </p>
23
+
24
+
25
+ ## Dataset Details
26
+
27
+ ### Dataset Description
28
+
29
+ <!-- Provide a longer summary of what this dataset is. -->
30
+
31
+ GRBench includes 10 real-world graphs that can serve as external knowledge sources for LLMs from five domains including academic, e-commerce, literature, healthcare, and legal domains. Each sample in GRBench consists of a manually designed question and an answer, which can be directly answered by referring to the graphs or retrieving the information from the graphs as context. To make the dataset comprehensive, we include samples of different difficulty levels: easy questions (which can be answered with single-hop reasoning on graphs), medium questions (which necessitate multi-hop reasoning on graphs), and hard questions (which call for inductive reasoning with information on graphs as context).
32
+
33
+ <p align="center">
34
+ <img src="fig/data.png" width="300px"/>
35
+ </p>
36
+
37
+ - **Curated by:** Bowen Jin (https://peterjin.me/), Chulin Xie (https://alphapav.github.io/), Jiawei Zhang (https://javyduck.github.io/) and Kashob Kumar Roy (https://www.linkedin.com/in/forkkr/)
38
+ - **Language(s) (NLP):** English
39
+ - **License:** apache-2.0
40
+
41
+ ### Dataset Sources
42
+
43
+ <!-- Provide the basic links for the dataset. -->
44
+
45
+ - **Repository:** https://github.com/PeterGriffinJin/Graph-CoT
46
+ - **Paper:** https://arxiv.org/pdf/2404.07103.pdf
47
+ - **Graph files:** https://drive.google.com/drive/folders/1DJIgRZ3G-TOf7h0-Xub5_sE4slBUEqy9
48
+
49
+ ## Uses
50
+
51
+ <!-- Address questions around how the dataset is intended to be used. -->
52
+
53
+ ### Direct Use
54
+
55
+ <!-- This section describes suitable use cases for the dataset. -->
56
+
57
+ You can first download the processed graph data here: https://drive.google.com/drive/folders/1DJIgRZ3G-TOf7h0-Xub5_sE4slBUEqy9.
58
+ Then,
59
+
60
+ ```
61
+ from datasets import load_dataset
62
+ dataset = load_dataset("PeterJinGo/GRBench")
63
+ ```
64
+
65
+
66
+ ## Dataset Structure
67
+
68
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
69
+
70
+ Information of how the graph file looks like can be found here: https://github.com/PeterGriffinJin/Graph-CoT/tree/main/data.
71
+
72
+
73
+
74
+ ## Dataset Creation
75
+
76
+ More details of how the dataset is constructed can be found in Section 3 of this paper (https://arxiv.org/pdf/2404.07103.pdf).
77
+
78
+ The raw graph data sources can be found here: https://github.com/PeterGriffinJin/Graph-CoT/tree/main/data/raw_data.
79
+
80
+
81
+
82
+ ## Citation
83
+
84
+ <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
85
+
86
+ **BibTeX:**
87
+
88
+ @article{jin2023graph,
89
+
90
+ title={Graph Chain-of-Thought: Augmenting Large Language Models by Reasoning on Graphs},
91
+
92
+ author={Jin, Bowen and Xie, Chulin and Zhang, Jiawei and Roy, Kashob and Zhang, Yu and Wang, Suhang and Meng, Yu and Han, Jiawei},
93
+
94
+ journal={arXiv preprint arXiv:2404.07103},
95
+
96
+ year={2024}
97
+ }
98
+
99
+
100
+ ## Dataset Card Authors
101
+
102
+ Bowen Jin
103
+
104
+ ## Dataset Card Contact
105
+
106