Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,60 +1,56 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
configs:
|
| 3 |
-
- config_name: default
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
task_categories:
|
| 8 |
-
- visual-question-answering
|
| 9 |
-
- image-to-text
|
| 10 |
language:
|
| 11 |
-
- en
|
| 12 |
tags:
|
| 13 |
-
- multimodal
|
| 14 |
-
- chain-of-thought
|
| 15 |
-
- reasoning
|
| 16 |
-
- game
|
| 17 |
-
- navigation
|
| 18 |
-
- maze
|
| 19 |
size_categories:
|
| 20 |
-
- n<1K
|
| 21 |
---
|
| 22 |
|
| 23 |
# Game Reasoning Dataset
|
| 24 |
|
| 25 |
-
A multimodal chain-of-thought reasoning dataset for game navigation
|
| 26 |
-
|
| 27 |
-
## Dataset Description
|
| 28 |
-
|
| 29 |
-
This dataset contains 100 visual reasoning examples from various game scenarios, featuring step-by-step reasoning with intermediate visual representations.
|
| 30 |
-
|
| 31 |
-
## Dataset Structure
|
| 32 |
-
|
| 33 |
-
| Field | Type | Description |
|
| 34 |
-
|-------|------|-------------|
|
| 35 |
-
| `pid` | string | Unique problem ID |
|
| 36 |
-
| `question` | string | Task description |
|
| 37 |
-
| `answer` | string | Expert path / solution |
|
| 38 |
-
| `problem_image_0` | image | Initial game state |
|
| 39 |
-
| `resoning_thought_0` | string | First round reasoning |
|
| 40 |
-
| `reasoning_image_0` | image | Reasoning visualization |
|
| 41 |
-
| `resoning_thought_1` | string | Second round reasoning |
|
| 42 |
-
| `task` | string | Task identifier |
|
| 43 |
-
| `full_text_only_thought` | string | Complete reasoning chain |
|
| 44 |
-
| `meta_info` | dict | Metadata (map, icon_info, task_type, goal_object) |
|
| 45 |
|
| 46 |
## Usage
|
| 47 |
|
| 48 |
```python
|
| 49 |
from datasets import load_dataset
|
| 50 |
-
|
| 51 |
-
dataset = load_dataset("huzican/eval_game")
|
| 52 |
-
example = dataset["test"][0]
|
| 53 |
-
|
| 54 |
-
# View images
|
| 55 |
-
example['problem_image_0'].show()
|
| 56 |
-
example['reasoning_image_0'].show()
|
| 57 |
-
|
| 58 |
-
# Access reasoning
|
| 59 |
-
print(example['resoning_thought_0'])
|
| 60 |
-
print(example['resoning_thought_1'])
|
|
|
|
| 1 |
---
|
| 2 |
+
dataset_info:
|
| 3 |
+
features:
|
| 4 |
+
- name: pid
|
| 5 |
+
dtype: string
|
| 6 |
+
- name: question
|
| 7 |
+
dtype: string
|
| 8 |
+
- name: answer
|
| 9 |
+
dtype: string
|
| 10 |
+
- name: problem_image_0
|
| 11 |
+
dtype: image
|
| 12 |
+
- name: resoning_thought_0
|
| 13 |
+
dtype: string
|
| 14 |
+
- name: reasoning_image_0
|
| 15 |
+
dtype: image
|
| 16 |
+
- name: resoning_thought_1
|
| 17 |
+
dtype: string
|
| 18 |
+
- name: task
|
| 19 |
+
dtype: string
|
| 20 |
+
- name: full_text_only_thought
|
| 21 |
+
dtype: string
|
| 22 |
+
- name: meta_info
|
| 23 |
+
splits:
|
| 24 |
+
- name: test
|
| 25 |
+
num_bytes: 10179370
|
| 26 |
+
num_examples: 100
|
| 27 |
+
download_size: 10179370
|
| 28 |
+
dataset_size: 10179370
|
| 29 |
configs:
|
| 30 |
+
- config_name: default
|
| 31 |
+
data_files:
|
| 32 |
+
- split: test
|
| 33 |
+
path: data/*
|
| 34 |
task_categories:
|
| 35 |
+
- visual-question-answering
|
| 36 |
+
- image-to-text
|
| 37 |
language:
|
| 38 |
+
- en
|
| 39 |
tags:
|
| 40 |
+
- multimodal
|
| 41 |
+
- chain-of-thought
|
| 42 |
+
- reasoning
|
| 43 |
+
- game
|
|
|
|
|
|
|
| 44 |
size_categories:
|
| 45 |
+
- n<1K
|
| 46 |
---
|
| 47 |
|
| 48 |
# Game Reasoning Dataset
|
| 49 |
|
| 50 |
+
A multimodal chain-of-thought reasoning dataset for game navigation tasks.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
## Usage
|
| 53 |
|
| 54 |
```python
|
| 55 |
from datasets import load_dataset
|
| 56 |
+
dataset = load_dataset("huzican/eval_game")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|