docs: update dataset card
Browse files
README.md
CHANGED
|
@@ -1,3 +1,56 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: cc
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
size_categories:
|
| 3 |
+
- 1K<n<10K
|
| 4 |
+
task_categories:
|
| 5 |
+
- graph-ml
|
| 6 |
+
tags:
|
| 7 |
+
- art
|
| 8 |
license: cc
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
## Dataset Information
|
| 12 |
+
|
| 13 |
+
| # Nodes | # Edges | # Features |
|
| 14 |
+
|:-------:|:-------:|:----------:|
|
| 15 |
+
| 5,201 | 217,073 | 2,089 |
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from huggingface_hub import hf_hub_download
|
| 21 |
+
|
| 22 |
+
hf_hub_download(repo_id="SauravMaheshkar/Squirrel", filename="processed/squirrel.bin", local_dir="./data/", repo_type="dataset")
|
| 23 |
+
|
| 24 |
+
dataset, _ = dgl.load_graphs("./data/processed/squirrel.bin")
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
Thank you [@severo](https://huggingface.co/severo) for helping me [figure out the usage](https://discuss.huggingface.co/t/can-i-use-a-pickle-file-with-the-data-files-argument-with-datasets/72189/2?u=sauravmaheshkar).
|
| 28 |
+
|
| 29 |
+
## Citations
|
| 30 |
+
|
| 31 |
+
```
|
| 32 |
+
@article{ju2023multi,
|
| 33 |
+
title={Multi-task Self-supervised Graph Neural Networks Enable Stronger Task Generalization},
|
| 34 |
+
author={Ju, Mingxuan and Zhao, Tong and Wen, Qianlong and Yu, Wenhao and Shah, Neil and Ye, Yanfang and Zhang, Chuxu},
|
| 35 |
+
booktitle={International Conference on Learning Representations},
|
| 36 |
+
year={2023}
|
| 37 |
+
}
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
```
|
| 41 |
+
@article{DBLP:journals/corr/abs-1909-13021,
|
| 42 |
+
author = {Benedek Rozemberczki and
|
| 43 |
+
Carl Allen and
|
| 44 |
+
Rik Sarkar},
|
| 45 |
+
title = {Multi-scale Attributed Node Embedding},
|
| 46 |
+
journal = {CoRR},
|
| 47 |
+
volume = {abs/1909.13021},
|
| 48 |
+
year = {2019},
|
| 49 |
+
url = {http://arxiv.org/abs/1909.13021},
|
| 50 |
+
eprinttype = {arXiv},
|
| 51 |
+
eprint = {1909.13021},
|
| 52 |
+
timestamp = {Wed, 02 Oct 2019 13:04:08 +0200},
|
| 53 |
+
biburl = {https://dblp.org/rec/journals/corr/abs-1909-13021.bib},
|
| 54 |
+
bibsource = {dblp computer science bibliography, https://dblp.org}
|
| 55 |
+
}
|
| 56 |
+
```
|