Datasets:
File size: 2,434 Bytes
de5bcee 863d1cc de5bcee 863d1cc de5bcee 863d1cc de5bcee 863d1cc de5bcee 863d1cc de5bcee 863d1cc 3b8d59f 863d1cc 3b8d59f 7d46945 3b8d59f f31f8c4 3b8d59f 863d1cc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
---
license: cc-by-nc-4.0
task_categories:
- question-answering
- multiple-choice
- visual-question-answering
- image-text-to-text
language:
- en
pretty_name: OST-Bench
size_categories:
- 10K<n<100K
dataset_info:
features:
- name: scan_id
dtype: string
- name: turn_id
dtype: int64
- name: type
dtype: string
- name: new_observations
sequence: string
- name: origin_question
dtype: string
- name: option
sequence: string
- name: answer
dtype: string
splits:
- name: test
num_examples: 10000
configs:
- config_name: default
data_files:
- split: test
path: OST_bench.json
---
This page contains the data for the paper "OST-Bench: Evaluating the Capabilities of MLLMs in Online Spatio-temporal Scene Understanding."
[**π Homepage**](https://rbler1234.github.io/OSTBench.github.io/) | [**π Paper**](https://arxiv.org/pdf/2507.07984) | [**π» Code**](https://github.com/OpenRobotLab/OST-Bench) | [**π arXiv**](https://arxiv.org/abs/2507.07984)
## Dataset Description
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.
ost-bench.json consists of 10k data samples, where each sample represents one round of Q&A (question and answer) and includes the new observations for that round. The structure of each sample (dictionary) is as follows:
```python
{
"scan_id" (str): Unique identifier for the scene scan,
"system_prompt" (str): Shared context/prompt for the multi-turn conversation,
"turn_id" (int): Index of the current turn in the dialogue,
"type" (str): Question subtype/category,
"origin_question" (str): Original question text,
"answer" (str): Ground-truth answer,
"option" (list[str]): Multiple-choice options,
"new_observations" (list[str]): Relative paths to new observation images (within `imgs` dir),
"user_message" (str): Formatted input prompt for the model,
}
```
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`.
## Evaluation Instructions
Please refer to our [evaluation code](https://github.com/OpenRobotLab/OST-Bench) for details. |