Add task categories and link to paper

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +32 -7
README.md CHANGED
@@ -1,23 +1,25 @@
1
  ---
2
- license: apache-2.0
3
  language:
4
  - en
 
 
 
 
 
5
  tags:
6
  - graph
7
  - text-attributed-graph
8
  - node-classification
9
  - llm
10
- size_categories:
11
- - 1M<n<10M
12
  ---
13
 
14
  # GraspLLM Datasets
15
 
16
- Pre-processed text-attributed graphs used in
17
- [**GraspLLM**](https://github.com/Heinz217/GraspLLM):
18
- *Towards Zero-Shot Generalization on Text-Attributed Graphs with LLMs*.
19
 
20
- This repository hosts the **raw graph** (`processed_data.pt`) for each dataset.
21
 
22
  ## Datasets
23
 
@@ -42,6 +44,8 @@ Each `<dataset>/processed_data.pt` is a [PyG](https://pytorch-geometric.readthed
42
 
43
  ## Usage
44
 
 
 
45
  ```bash
46
  # Clone the GraspLLM code repo
47
  git clone https://github.com/Heinz217/GraspLLM.git
@@ -55,3 +59,24 @@ huggingface-cli download Heinz217/GraspLLM-Datasets \
55
  # Configure dataset root (or just keep the default ./dataset)
56
  export GRASPLLM_DATASET_ROOT=$PWD/dataset
57
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  language:
3
  - en
4
+ license: apache-2.0
5
+ size_categories:
6
+ - 1M<n<10M
7
+ task_categories:
8
+ - graph-ml
9
  tags:
10
  - graph
11
  - text-attributed-graph
12
  - node-classification
13
  - llm
 
 
14
  ---
15
 
16
  # GraspLLM Datasets
17
 
18
+ Pre-processed text-attributed graphs used in the paper [**GraspLLM: Towards Zero-Shot Generalization on Text-Attributed Graphs with LLMs**](https://huggingface.co/papers/2606.11898).
19
+
20
+ **Official Code Repository**: [https://github.com/Heinz217/GraspLLM](https://github.com/Heinz217/GraspLLM)
21
 
22
+ This repository hosts the **raw graph** (`processed_data.pt`) for each dataset. GraspLLM is a framework that combines graph structural comprehension with the semantic understanding prowess of LLMs, enabling zero-shot reasoning over Text-Attributed Graphs (TAGs).
23
 
24
  ## Datasets
25
 
 
44
 
45
  ## Usage
46
 
47
+ You can download the dataset bundle using the Hugging Face CLI:
48
+
49
  ```bash
50
  # Clone the GraspLLM code repo
51
  git clone https://github.com/Heinz217/GraspLLM.git
 
59
  # Configure dataset root (or just keep the default ./dataset)
60
  export GRASPLLM_DATASET_ROOT=$PWD/dataset
61
  ```
62
+
63
+ The expected layout for each dataset in the pipeline is:
64
+
65
+ ```
66
+ $GRASPLLM_DATASET_ROOT/<name>/
67
+ ├── processed_data.pt # provided here
68
+ ├── qwen3_emb_x.pt # produced by Step 0
69
+ ├── ocs_train.jsonl # produced by Stage 2
70
+ └── ocs_test.jsonl # produced by Stage 2
71
+ ```
72
+
73
+ ## Citation
74
+
75
+ ```bibtex
76
+ @article{graspllm2026,
77
+ title={GraspLLM: Towards Zero-Shot Generalization on Text-Attributed Graphs with LLMs},
78
+ author={Zhou, Heinz and others},
79
+ journal={arXiv preprint arXiv:2606.11898},
80
+ year={2026}
81
+ }
82
+ ```