Update README
Browse files
README.md
CHANGED
|
@@ -12,4 +12,49 @@ tags:
|
|
| 12 |
pretty_name: MECoBench
|
| 13 |
size_categories:
|
| 14 |
- n<1K
|
| 15 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
pretty_name: MECoBench
|
| 13 |
size_categories:
|
| 14 |
- n<1K
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# MECoBench
|
| 18 |
+
|
| 19 |
+
MECoBench is a benchmark for systematically evaluating multimodal multi-agent collaboration in embodied environments.
|
| 20 |
+
|
| 21 |
+
It contains 192 task cases constructed in VirtualHome, covering two collaboration structures:
|
| 22 |
+
|
| 23 |
+
* **Parallel collaboration:** 96 task cases in which agents operate in a
|
| 24 |
+
shared environment and can complete independent subtasks concurrently.
|
| 25 |
+
* **Sequential collaboration:** 96 task cases in which agents operate in
|
| 26 |
+
disjoint spatial regions and must coordinate through object handovers.
|
| 27 |
+
|
| 28 |
+
## Dataset Files
|
| 29 |
+
|
| 30 |
+
| File | Description | Number of cases |
|
| 31 |
+
| ----------------- | ------------------------------ | --------------: |
|
| 32 |
+
| `parallel.json` | Parallel collaboration tasks | 96 |
|
| 33 |
+
| `sequential.json` | Sequential collaboration tasks | 96 |
|
| 34 |
+
|
| 35 |
+
## Download
|
| 36 |
+
|
| 37 |
+
Download the complete dataset with:
|
| 38 |
+
|
| 39 |
+
```python
|
| 40 |
+
from huggingface_hub import snapshot_download
|
| 41 |
+
|
| 42 |
+
snapshot_download(
|
| 43 |
+
repo_id="q-i-n-g/MECoBench",
|
| 44 |
+
repo_type="dataset"
|
| 45 |
+
)
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
Alternatively, using the Hugging Face CLI:
|
| 49 |
+
|
| 50 |
+
```bash
|
| 51 |
+
hf download q-i-n-g/MECoBench \
|
| 52 |
+
--repo-type dataset
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## Evaluation
|
| 56 |
+
|
| 57 |
+
The dataset is designed for use with the MECoBench simulator, which is based on VirtualHome v2.3.0 and includes additional multi-agent actions, agent constraints, rendering capabilities, character assets, and stability fixes.
|
| 58 |
+
|
| 59 |
+
The simulator, benchmark code, and evaluation scripts are available in the [MECoBench GitHub repository](https://github.com/q-i-n-g/MECoBench).
|
| 60 |
+
|