deqing commited on
Commit
b76b31c
1 Parent(s): 479a533

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -184,11 +184,34 @@ Introducing IsoBench, a benchmark dataset containing problems from four major ar
184
  ## Uses
185
 
186
  <!-- Address questions around how the dataset is intended to be used. -->
 
187
 
188
  ### Direct Use
189
 
190
  <!-- This section describes suitable use cases for the dataset. -->
191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  [More Information Needed]
193
 
194
  ### Out-of-Scope Use
 
184
  ## Uses
185
 
186
  <!-- Address questions around how the dataset is intended to be used. -->
187
+ There are 4 major domains: math, algorithm, game, and science. Each domain has several subtasks. We will show how to load the data for each subtask.
188
 
189
  ### Direct Use
190
 
191
  <!-- This section describes suitable use cases for the dataset. -->
192
 
193
+ #### Mathematics
194
+
195
+ #### Algorithms
196
+ There are three algorithmic tasks, with ascending complexity: graph connectivity, graph maximum flow, and graph isomorphism.
197
+
198
+ You can download the data by
199
+ ```python
200
+ from datasets import load_dataset
201
+
202
+ dataset_connectivity = load_dataset('isobench/IsoBench', 'graph_connectivity', split='validation')
203
+ dataset_maxflow = load_dataset('isobench/IsoBench', 'graph_maxflow', split='validation')
204
+ dataset_isomorphism = load_dataset('isobench/IsoBench', 'graph_isomorphism', split='validation')
205
+ ```
206
+
207
+ Each task has 128 dev samples under the validation split.
208
+
209
+
210
+
211
+ #### Games
212
+
213
+ #### Science
214
+
215
  [More Information Needed]
216
 
217
  ### Out-of-Scope Use