Datasets:
Improve dataset card: Update license, size category, task category, and code link
Browse filesThis PR improves the dataset card for OST-Bench by:
- Updating the `license` to the specific `cc-by-nc-4.0` based on the GitHub repository's license information.
- Refining the `size_categories` to `10K<n<100K` to accurately reflect the dataset's 10,000 examples.
- Adding `image-text-to-text` to `task_categories` for better discoverability, complementing the existing specific VQA tasks.
- Fixing a typo in the introductory sentence ("Unstanding" to "Understanding").
- Unifying the "Code" link to `https://github.com/rbler1234/OST-Bench` for consistency with the project's GitHub README and evaluation instructions.
README.md
CHANGED
|
@@ -1,43 +1,44 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
task_categories:
|
| 4 |
- question-answering
|
| 5 |
- multiple-choice
|
| 6 |
- visual-question-answering
|
| 7 |
-
|
| 8 |
-
- en
|
| 9 |
pretty_name: OST-Bench
|
| 10 |
-
size_categories:
|
| 11 |
-
- 1K<n<
|
| 12 |
dataset_info:
|
| 13 |
features:
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
splits:
|
| 29 |
-
|
| 30 |
-
|
| 31 |
configs:
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
---
|
| 37 |
|
| 38 |
-
This page contains the data for the paper "OST-Bench: Evaluating the Capabilities of MLLMs in Online Spatio-temporal Scene
|
| 39 |
|
| 40 |
-
[**π Homepage**](https://rbler1234.github.io/OSTBench.github.io/) | [**π Paper**](https://arxiv.org/pdf/2507.07984) | [**π» Code**](https://github.com/
|
| 41 |
|
| 42 |
## Dataset Description
|
| 43 |
The `imgs` folder contains image data corresponding to 1,386 scenes. Each scene has its own subfolder, which stores the observations captured by the agent while exploring that scene.
|
|
@@ -61,4 +62,4 @@ ost-bench.json consists of 10k data samples, where each sample represents one ro
|
|
| 61 |
Samples with the same `scan_id` belong to the same multi-turn conversation group. During model evaluation, each multi-turn conversation group is processed as a unit: the shared `system_prompt` is provided, and new observations along with questions are fed in sequentially according to `turn_id`.
|
| 62 |
|
| 63 |
## Evaluation Instructions
|
| 64 |
-
Please refer to our
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: cc-by-nc-4.0
|
| 5 |
+
size_categories:
|
| 6 |
+
- 10K<n<100K
|
| 7 |
task_categories:
|
| 8 |
- question-answering
|
| 9 |
- multiple-choice
|
| 10 |
- visual-question-answering
|
| 11 |
+
- image-text-to-text
|
|
|
|
| 12 |
pretty_name: OST-Bench
|
|
|
|
|
|
|
| 13 |
dataset_info:
|
| 14 |
features:
|
| 15 |
+
- name: scan_id
|
| 16 |
+
dtype: string
|
| 17 |
+
- name: turn_id
|
| 18 |
+
dtype: int64
|
| 19 |
+
- name: type
|
| 20 |
+
dtype: string
|
| 21 |
+
- name: new_observations
|
| 22 |
+
sequence: string
|
| 23 |
+
- name: origin_question
|
| 24 |
+
dtype: string
|
| 25 |
+
- name: option
|
| 26 |
+
sequence: string
|
| 27 |
+
- name: answer
|
| 28 |
+
dtype: string
|
| 29 |
splits:
|
| 30 |
+
- name: test
|
| 31 |
+
num_examples: 10000
|
| 32 |
configs:
|
| 33 |
+
- config_name: default
|
| 34 |
+
data_files:
|
| 35 |
+
- split: test
|
| 36 |
+
path: OST_bench.json
|
| 37 |
---
|
| 38 |
|
| 39 |
+
This page contains the data for the paper "OST-Bench: Evaluating the Capabilities of MLLMs in Online Spatio-temporal Scene Understanding."
|
| 40 |
|
| 41 |
+
[**π Homepage**](https://rbler1234.github.io/OSTBench.github.io/) | [**π Paper**](https://arxiv.org/pdf/2507.07984) | [**π» Code**](https://github.com/rbler1234/OST-Bench) | [**π arXiv**](https://arxiv.org/abs/2507.07984)
|
| 42 |
|
| 43 |
## Dataset Description
|
| 44 |
The `imgs` folder contains image data corresponding to 1,386 scenes. Each scene has its own subfolder, which stores the observations captured by the agent while exploring that scene.
|
|
|
|
| 62 |
Samples with the same `scan_id` belong to the same multi-turn conversation group. During model evaluation, each multi-turn conversation group is processed as a unit: the shared `system_prompt` is provided, and new observations along with questions are fed in sequentially according to `turn_id`.
|
| 63 |
|
| 64 |
## Evaluation Instructions
|
| 65 |
+
Please refer to our [evaluation code](https://github.com/rbler1234/OST-Bench) for details.
|