Improve dataset card: add metadata and link to paper
Browse filesHi! I'm Niels from the community science team at Hugging Face.
This PR improves the dataset card by:
- Adding the `graph-ml` task category to the YAML metadata.
- Specifying the `cc-by-nc-sa-4.0` license in the YAML.
- Ensuring the official research paper and GitHub repository are clearly linked in the content.
These changes help researchers find and cite the dataset more easily on the Hugging Face Hub.
README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
configs:
|
| 3 |
- config_name: default
|
| 4 |
data_files:
|
| 5 |
-
|
| 6 |
-
|
| 7 |
---
|
|
|
|
| 8 |
<h1 align="center"> HiGraph: A Large-Scale Hierarchical Graph Dataset </h1>
|
| 9 |
|
| 10 |
<div align="center">
|
|
@@ -14,7 +18,8 @@ configs:
|
|
| 14 |
<p><strong>Hierarchical Graph Dataset for Malware Analysis with Function Call Graphs and Control Flow Graphs</strong></p>
|
| 15 |
|
| 16 |
|
| 17 |
-
<a href="https://
|
|
|
|
| 18 |
<img src="https://img.shields.io/badge/🤗%20Hugging%20Face-Datasets-yellow" alt="Hugging Face" />
|
| 19 |
<img src="https://img.shields.io/badge/Dataset-6.17GB-blue" alt="Dataset Size" />
|
| 20 |
<img src="https://img.shields.io/badge/Period-2012--2022-orange" alt="Time Period" />
|
|
@@ -22,7 +27,7 @@ configs:
|
|
| 22 |
|
| 23 |
A comprehensive hierarchical graph-based dataset for malware analysis and detection.
|
| 24 |
|
| 25 |
-
[Overview](#overview) • [Interactive Explorer](#interactive-visualization) • [Download](#download-dataset)
|
| 26 |
|
| 27 |
</div>
|
| 28 |
|
|
@@ -30,6 +35,8 @@ A comprehensive hierarchical graph-based dataset for malware analysis and detect
|
|
| 30 |
|
| 31 |
**HiGraph** is a novel, large-scale dataset that models each application as a hierarchical graph: a local **Control Flow Graph (CFG)** capturing intra-function logic and a global **Function Call Graph (FCG)** capturing inter-function interactions.
|
| 32 |
|
|
|
|
|
|
|
| 33 |
Graph-based methods have shown great promise in malware analysis, yet the lack of large-scale, hierarchical graph datasets limits further advances in this field. This hierarchical design facilitates the development of robust detection models that are more resilient to obfuscation, model aging, and malware evolution.
|
| 34 |
|
| 35 |
|
|
@@ -64,6 +71,7 @@ Access the complete HiGraph dataset through multiple platforms:
|
|
| 64 |
|----------|-------------|------|
|
| 65 |
| 🤗 **Hugging Face** | Primary dataset repository | [View on Hugging Face](https://huggingface.co/datasets/hzcheney/Hi-Graph/tree/main) |
|
| 66 |
| 🌐 **Project Page** | Interactive explorer | [HiGraph Explorer](https://higraph.org/) |
|
|
|
|
| 67 |
|
| 68 |
</div>
|
| 69 |
|
|
@@ -74,7 +82,7 @@ If you find HiGraph useful in your research, please cite:
|
|
| 74 |
```
|
| 75 |
@article{chen2025higraph,
|
| 76 |
title={HiGraph: A Large-Scale Hierarchical Graph Dataset for Malware Analysis},
|
| 77 |
-
author={Chen, Han and Wang, Hanchen and Chen, Hongmei and Zhang, Ying and Qin, Lu and Zhang, Wenjie},
|
| 78 |
journal={arXiv preprint arXiv:2509.02113},
|
| 79 |
year={2025}
|
| 80 |
}
|
|
@@ -93,4 +101,4 @@ pip install -r requirements.txt
|
|
| 93 |
|
| 94 |
## 📄 License
|
| 95 |
|
| 96 |
-
This dataset is licensed under the **Creative Commons Attribution-NonCommercial-ShareAlike (CC-BY-NC-SA)** license. See the [LICENSE](LICENSE) file for details.
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-sa-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- graph-ml
|
| 5 |
configs:
|
| 6 |
- config_name: default
|
| 7 |
data_files:
|
| 8 |
+
- split: train
|
| 9 |
+
path: data/*.parquet
|
| 10 |
---
|
| 11 |
+
|
| 12 |
<h1 align="center"> HiGraph: A Large-Scale Hierarchical Graph Dataset </h1>
|
| 13 |
|
| 14 |
<div align="center">
|
|
|
|
| 18 |
<p><strong>Hierarchical Graph Dataset for Malware Analysis with Function Call Graphs and Control Flow Graphs</strong></p>
|
| 19 |
|
| 20 |
|
| 21 |
+
<a href="https://huggingface.co/papers/2509.02113"><img src="https://img.shields.io/badge/arXiv-2509.02113-b31b1b.svg" alt="arXiv" /></a>
|
| 22 |
+
<a href="https://github.com/hzcheney/HiGraph"><img src="https://img.shields.io/badge/GitHub-Repository-blue?logo=github" alt="GitHub" /></a>
|
| 23 |
<img src="https://img.shields.io/badge/🤗%20Hugging%20Face-Datasets-yellow" alt="Hugging Face" />
|
| 24 |
<img src="https://img.shields.io/badge/Dataset-6.17GB-blue" alt="Dataset Size" />
|
| 25 |
<img src="https://img.shields.io/badge/Period-2012--2022-orange" alt="Time Period" />
|
|
|
|
| 27 |
|
| 28 |
A comprehensive hierarchical graph-based dataset for malware analysis and detection.
|
| 29 |
|
| 30 |
+
[Overview](#overview) • [Interactive Explorer](#interactive-visualization) • [Download](#download-dataset) • [GitHub](https://github.com/hzcheney/HiGraph)
|
| 31 |
|
| 32 |
</div>
|
| 33 |
|
|
|
|
| 35 |
|
| 36 |
**HiGraph** is a novel, large-scale dataset that models each application as a hierarchical graph: a local **Control Flow Graph (CFG)** capturing intra-function logic and a global **Function Call Graph (FCG)** capturing inter-function interactions.
|
| 37 |
|
| 38 |
+
The dataset was introduced in the paper [HiGraph: A Large-Scale Hierarchical Graph Dataset for Malware Analysis](https://huggingface.co/papers/2509.02113).
|
| 39 |
+
|
| 40 |
Graph-based methods have shown great promise in malware analysis, yet the lack of large-scale, hierarchical graph datasets limits further advances in this field. This hierarchical design facilitates the development of robust detection models that are more resilient to obfuscation, model aging, and malware evolution.
|
| 41 |
|
| 42 |
|
|
|
|
| 71 |
|----------|-------------|------|
|
| 72 |
| 🤗 **Hugging Face** | Primary dataset repository | [View on Hugging Face](https://huggingface.co/datasets/hzcheney/Hi-Graph/tree/main) |
|
| 73 |
| 🌐 **Project Page** | Interactive explorer | [HiGraph Explorer](https://higraph.org/) |
|
| 74 |
+
| 💻 **GitHub** | Code and tools | [HiGraph Repository](https://github.com/hzcheney/HiGraph) |
|
| 75 |
|
| 76 |
</div>
|
| 77 |
|
|
|
|
| 82 |
```
|
| 83 |
@article{chen2025higraph,
|
| 84 |
title={HiGraph: A Large-Scale Hierarchical Graph Dataset for Malware Analysis},
|
| 85 |
+
author={Chen, Han and Wang, Hanchen and Chen, Hongmei and Zhang, Ying English and Qin, Lu and Zhang, Wenjie},
|
| 86 |
journal={arXiv preprint arXiv:2509.02113},
|
| 87 |
year={2025}
|
| 88 |
}
|
|
|
|
| 101 |
|
| 102 |
## 📄 License
|
| 103 |
|
| 104 |
+
This dataset is licensed under the **Creative Commons Attribution-NonCommercial-ShareAlike (CC-BY-NC-SA)** license. See the [LICENSE](https://github.com/hzcheney/HiGraph/blob/master/LICENSE) file for details.
|