Improve dataset card: add metadata, links, and data format documentation

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +48 -3
README.md CHANGED
@@ -51,8 +51,54 @@ configs:
51
  path: data/train-*
52
  - split: validation
53
  path: data/validation-*
 
 
 
 
 
 
 
 
 
 
54
  ---
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
  ## πŸ“š Citation
58
 
@@ -69,7 +115,7 @@ If you use this dataset in your research, please cite:
69
 
70
  ## πŸ“„ License
71
 
72
- Apache 2.0
73
 
74
  ## 🀝 Acknowledgments
75
 
@@ -77,5 +123,4 @@ This model is part of the AdaReasoner project. For more information, visit our [
77
 
78
  ## πŸ“§ Contact
79
 
80
- For questions and feedback, please open an issue in our [GitHub repository](https://github.com/ssmisya/AdaReasoner).
81
-
 
51
  path: data/train-*
52
  - split: validation
53
  path: data/validation-*
54
+ task_categories:
55
+ - image-text-to-text
56
+ license: apache-2.0
57
+ language:
58
+ - en
59
+ tags:
60
+ - visual-reasoning
61
+ - tool-use
62
+ - multimodal
63
+ - mllm
64
  ---
65
 
66
+ # AdaReasoner Dataset
67
+
68
+ [**Project Page**](https://adareasoner.github.io/) | [**Paper**](https://huggingface.co/papers/2601.18631) | [**GitHub**](https://github.com/ssmisya/AdaReasoner)
69
+
70
+ AdaReasoner is a family of multimodal models that learn tool use as a general reasoning skill rather than as tool-specific behavior. This dataset provides the training and evaluation data used to enable long-horizon, multi-step tool interactions. It was curated to help models infer tool utility from task context and intermediate outcomes, enabling the coordination of multiple tools and generalization to unseen ones.
71
+
72
+ ## 🧩 Data Format
73
+
74
+ The data is stored in Parquet format. According to the official documentation, each item in the dataset typically follows this structure:
75
+
76
+ ```python
77
+ prompt = [
78
+ {
79
+ "content": system_prompt,
80
+ "role": "system"
81
+ },
82
+ {
83
+ "content": f"{question_text}",
84
+ "role": "user"
85
+ }
86
+ ]
87
+ item = {
88
+ "data_source": "jigsaw_coco",
89
+ "prompt": prompt,
90
+ "images": [{"bytes": question_image_bytes}] + choice_images,
91
+ "ability": "visual_reasoning",
92
+ "env_name": "jigsaw",
93
+ "reward_model": {
94
+ "ground_truth": correct_letter.lower(),
95
+ "style": "model"
96
+ },
97
+ "extra_info": { # Used for reward calculation
98
+ "extra_info1": "...",
99
+ }
100
+ }
101
+ ```
102
 
103
  ## πŸ“š Citation
104
 
 
115
 
116
  ## πŸ“„ License
117
 
118
+ This dataset is licensed under the Apache 2.0 License.
119
 
120
  ## 🀝 Acknowledgments
121
 
 
123
 
124
  ## πŸ“§ Contact
125
 
126
+ For questions and feedback, please open an issue in our [GitHub repository](https://github.com/ssmisya/AdaReasoner).