FloGr nielsr HF Staff commited on
Commit
0e56e15
·
verified ·
1 Parent(s): c868ff1

Enhance dataset card: Add paper, project page, GitHub, metadata (#1)

Browse files

- Enhance dataset card: Add paper, project page, GitHub, metadata (776e318a4370e883d6ea44ccd67d8b6c3f561779)


Co-authored-by: Niels Rogge <[email protected]>

Files changed (1) hide show
  1. README.md +37 -0
README.md CHANGED
@@ -1,4 +1,11 @@
1
  ---
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: 'Unnamed: 0'
@@ -23,3 +30,33 @@ configs:
23
  - split: train
24
  path: data/train-*
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ task_categories:
3
+ - graph-ml
4
+ license: mit
5
+ tags:
6
+ - multi-agent-systems
7
+ - benchmark
8
+ - llms
9
  dataset_info:
10
  features:
11
  - name: 'Unnamed: 0'
 
30
  - split: train
31
  path: data/train-*
32
  ---
33
+
34
+ # AgentsNet
35
+
36
+ This repository contains the graph instances used in the [AgentsNet: Coordination and Collaborative Reasoning in Multi-Agent LLMs](https://huggingface.co/papers/2507.08616) paper.
37
+
38
+ AgentsNet is a new benchmark for multi-agent reasoning, designed to measure the ability of multi-agent systems to collaboratively form strategies for problem-solving, self-organization, and effective communication given a network topology. It draws inspiration from classical problems in distributed systems and graph theory.
39
+
40
+ * **Paper**: [AgentsNet: Coordination and Collaborative Reasoning in Multi-Agent LLMs](https://huggingface.co/papers/2507.08616)
41
+ * **Project Page**: [https://agentsnet.graphben.ch](https://agentsnet.graphben.ch)
42
+ * **GitHub Repository**: [https://github.com/ashleve/lightning-hydra-template](https://github.com/ashleve/lightning-hydra-template)
43
+
44
+ ## Dataset
45
+
46
+ The dataset consists of synthetic graphs generated using various random graph models. It serves as the input for all experiments in the benchmark.
47
+
48
+ ## Citation
49
+
50
+ If you use this dataset, please cite the associated paper:
51
+
52
+ ```bibtex
53
+ @misc{grötschla2025agentsnetcoordinationcollaborativereasoning,
54
+ title={AgentsNet: Coordination and Collaborative Reasoning in Multi-Agent LLMs},
55
+ author={Florian Grötschla and Luis Müller and Jan Tönshoff and Mikhail Galkin and Bryan Perozzi},
56
+ year={2025},
57
+ eprint={2507.08616},
58
+ archivePrefix={arXiv},
59
+ primaryClass={cs.MA},
60
+ url={https://arxiv.org/abs/2507.08616},
61
+ }
62
+ ```