nielsr HF Staff commited on
Commit
c7800d9
Β·
verified Β·
1 Parent(s): 7d46945

Improve dataset card: Update license, size category, task category, and code link

Browse files

This 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.

Files changed (1) hide show
  1. README.md +29 -28
README.md CHANGED
@@ -1,43 +1,44 @@
1
  ---
2
- license: cc
 
 
 
 
3
  task_categories:
4
  - question-answering
5
  - multiple-choice
6
  - visual-question-answering
7
- language:
8
- - en
9
  pretty_name: OST-Bench
10
- size_categories:
11
- - 1K<n<
12
  dataset_info:
13
  features:
14
- - name: scan_id
15
- dtype: string
16
- - name: turn_id
17
- dtype: int64
18
- - name: type
19
- dtype: string
20
- - name: new_observations
21
- sequence: string
22
- - name: origin_question
23
- dtype: string
24
- - name: option
25
- sequence: string
26
- - name: answer
27
- dtype: string
28
  splits:
29
- - name: test
30
- num_examples: 10000
31
  configs:
32
- - config_name: default
33
- data_files:
34
- - split: test
35
- path: OST_bench.json
36
  ---
37
 
38
- This page contains the data for the paper "OST-Bench: Evaluating the Capabilities of MLLMs in Online Spatio-temporal Scene Unstanding."
39
 
40
- [**🌐 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)
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 [evaluation code](https://github.com/rbler1234/OST-Bench) for details.
 
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.