clefourrier HF staff commited on
Commit
d79ecbf
1 Parent(s): 1876208

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -23
README.md CHANGED
@@ -1,26 +1,97 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: edge_index
5
- sequence:
6
- sequence: int64
7
- - name: y
8
- sequence: int64
9
- - name: num_nodes
10
- dtype: int64
11
- splits:
12
- - name: train
13
- num_bytes: 398400
14
- num_examples: 150
15
- - name: val
16
- num_bytes: 398400
17
- num_examples: 150
18
- - name: test
19
- num_bytes: 398400
20
- num_examples: 150
21
- download_size: 26370
22
- dataset_size: 1195200
23
  ---
24
- # Dataset Card for "CSL"
25
 
26
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
4
 
5
+ # Dataset Card for CSK
6
+
7
+ ## Table of Contents
8
+ - [Table of Contents](#table-of-contents)
9
+ - [Dataset Description](#dataset-description)
10
+ - [Dataset Summary](#dataset-summary)
11
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
12
+ - [External Use](#external-use)
13
+ - [PyGeometric](#pygeometric)
14
+ - [Dataset Structure](#dataset-structure)
15
+ - [Data Properties](#data-properties)
16
+ - [Data Fields](#data-fields)
17
+ - [Data Splits](#data-splits)
18
+ - [Additional Information](#additional-information)
19
+ - [Licensing Information](#licensing-information)
20
+ - [Citation Information](#citation-information)
21
+ - [Contributions](#contributions)
22
+
23
+ ## Dataset Description
24
+ - **[Homepage](https://github.com/graphdeeplearning/benchmarking-gnns)**
25
+ - **Paper:**: (see citation)
26
+
27
+
28
+ ### Dataset Summary
29
+ The CSL dataset is a synthetic dataset, to test GNN expressivity.
30
+
31
+ ### Supported Tasks and Leaderboards
32
+ `CSL` should be used for binary graph classification, on isomoprhism or not.
33
+
34
+ ## External Use
35
+ ### PyGeometric
36
+ To load in PyGeometric, do the following:
37
+
38
+ ```python
39
+ from datasets import load_dataset
40
+
41
+ from torch_geometric.data import Data
42
+ from torch_geometric.loader import DataLoader
43
+
44
+ dataset_hf = load_dataset("graphs-datasets/<mydataset>")
45
+ # For the train set (replace by valid or test as needed)
46
+ dataset_pg_list = [Data(graph) for graph in dataset_hf["train"]]
47
+ dataset_pg = DataLoader(dataset_pg_list)
48
+ ```
49
+
50
+ ## Dataset Structure
51
+
52
+ ### Data Properties
53
+ | property | value |
54
+ |---|---|
55
+ | #graphs | 150 |
56
+ | average #nodes | 41.0 |
57
+ | average #edges | 164.0 |
58
+
59
+ ### Data Fields
60
+
61
+ Each row of a given file is a graph, with:
62
+ - `node_feat` (list: #nodes x #node-features): nodes
63
+ - `edge_index` (list: 2 x #edges): pairs of nodes constituting edges
64
+ - `edge_attr` (list: #edges x #edge-features): for the aforementioned edges, contains their features
65
+ - `y` (list: #labels): contains the number of labels available to predict
66
+ - `num_nodes` (int): number of nodes of the graph
67
+
68
+ ### Data Splits
69
+
70
+ This data is split. It comes from the PyGeometric version of the dataset.
71
+
72
+ ## Additional Information
73
+
74
+ ### Licensing Information
75
+ The dataset has been released under MIT license.
76
+
77
+ ### Citation Information
78
+ ```
79
+ @article{DBLP:journals/corr/abs-2003-00982,
80
+ author = {Vijay Prakash Dwivedi and
81
+ Chaitanya K. Joshi and
82
+ Thomas Laurent and
83
+ Yoshua Bengio and
84
+ Xavier Bresson},
85
+ title = {Benchmarking Graph Neural Networks},
86
+ journal = {CoRR},
87
+ volume = {abs/2003.00982},
88
+ year = {2020},
89
+ url = {https://arxiv.org/abs/2003.00982},
90
+ eprinttype = {arXiv},
91
+ eprint = {2003.00982},
92
+ timestamp = {Sat, 23 Jan 2021 01:14:30 +0100},
93
+ biburl = {https://dblp.org/rec/journals/corr/abs-2003-00982.bib},
94
+ bibsource = {dblp computer science bibliography, https://dblp.org}
95
+ }
96
+
97
+ ```