Improve dataset card: add metadata, paper link, and usage instructions

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +36 -7
README.md CHANGED
@@ -1,13 +1,42 @@
 
 
 
 
 
 
1
  # MetaFine Dataset
2
 
3
- This dataset is a companion release of the [MetaFine project](https://metafine.github.io/), a framework for fine-grained manipulation evaluation.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
- It contains two main parts:
 
 
6
 
7
- - **Fine-grained annotated simulation assets**: URDF-based simulation objects with fine-grained part annotations and related interaction metadata.
8
- - **Fine-grained task data**: task specifications used for training and testing fine-grained manipulation policies.
9
 
10
- These data are intended to support research on fine-grained manipulation, including task construction, policy training, and evaluation.
11
 
12
- - Project page: https://metafine.github.io/
13
- - Platform code: https://github.com/Hiangx-robotics/MetaFine
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ ---
6
+
7
  # MetaFine Dataset
8
 
9
+ This dataset is a companion release for the paper [Beyond Binary Success: A Diagnostic Meta-Evaluation Framework for Fine-Grained Manipulation](https://huggingface.co/papers/2605.19986).
10
+
11
+ - **Project Page:** [https://metafine.github.io/](https://metafine.github.io/)
12
+ - **GitHub Repository:** [https://github.com/Hiangx-robotics/MetaFine](https://github.com/Hiangx-robotics/MetaFine)
13
+
14
+ MetaFine is a diagnostic meta-evaluation framework for fine-grained robotic manipulation. Instead of a single binary success rate, it disentangles manipulation competency along three fundamental axes: **understanding**, **perception**, and **behavior**.
15
+
16
+ ## Dataset Structure
17
+
18
+ The repository contains two main parts:
19
+
20
+ - **Fine-grained annotated simulation assets**: 40+ URDF-based simulation objects (including a PartNet-Mobility subset and custom URDFs) with fine-grained part annotations and related interaction metadata (`capabilities.json`).
21
+ - **Fine-grained task data**: Task specifications (YAML) used for training and testing fine-grained manipulation policies across various environments.
22
+
23
+ ## Usage
24
+
25
+ You can download the assets and configurations using the Hugging Face CLI:
26
 
27
+ ```bash
28
+ huggingface-cli download hiangx/MetaFine --repo-type dataset
29
+ ```
30
 
31
+ Place the unpacked `assets/` and `configs/` directories next to your local MetaFine repository root to use them with the platform.
 
32
 
33
+ ## Citation
34
 
35
+ ```bibtex
36
+ @article{xu2026metafine,
37
+ title = {Beyond Binary Success: A Diagnostic Meta-Evaluation Framework for Fine-Grained Manipulation},
38
+ author = {Xu, He-Yang and Zhang, Pengyuan and Ge, Zongyuan and Hao, Xiaoshuai and Belongie, Serge and Geng, Xin and Peng, Yuxin and Wei, Xiu-Shen},
39
+ journal = {arXiv preprint arXiv:2605.19986},
40
+ year = {2026}
41
+ }
42
+ ```