huzican commited on
Commit
779c79a
·
verified ·
1 Parent(s): 5ebdee6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -8
README.md CHANGED
@@ -7,21 +7,91 @@ dataset_info:
7
  dtype: string
8
  - name: answer
9
  dtype: string
10
-
11
  - name: problem_image_0
12
  dtype: image
13
- - name: reasoning_image_0
14
- dtype: image
15
-
16
  - name: resoning_thought_0
17
  dtype: string
 
 
18
  - name: resoning_thought_1
19
  dtype: string
 
 
20
  - name: full_text_only_thought
21
  dtype: string
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
- - name: task
24
- dtype: string
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
- # ❗ DO NOT declare meta_info here
27
- ---
 
 
 
 
 
 
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
+ struct:
24
+ - name: map
25
+ sequence:
26
+ sequence: int64
27
+ - name: icon_info
28
+ dtype: string
29
+ - name: task_type
30
+ dtype: string
31
+ - name: goal_object
32
+ dtype: string
33
+ splits:
34
+ - name: test
35
+ num_bytes: 10179370
36
+ num_examples: 100
37
+ download_size: 10179370
38
+ dataset_size: 10179370
39
+ configs:
40
+ - config_name: default
41
+ data_files:
42
+ - split: test
43
+ path: data/*
44
+ task_categories:
45
+ - visual-question-answering
46
+ - image-to-text
47
+ language:
48
+ - en
49
+ tags:
50
+ - multimodal
51
+ - chain-of-thought
52
+ - reasoning
53
+ - game
54
+ - navigation
55
+ size_categories:
56
+ - n<1K
57
+ ---
58
 
59
+ # Game Reasoning Dataset
60
+
61
+ A multimodal chain-of-thought reasoning dataset for game navigation and puzzle-solving tasks.
62
+
63
+ ## Dataset Description
64
+
65
+ This dataset contains 100 visual reasoning examples from various game scenarios, featuring step-by-step reasoning with intermediate visual representations.
66
+
67
+ ### Supported Tasks
68
+
69
+ - **Navigation**: Path planning in grid-based game environments
70
+ - **Puzzle-solving**: Goal-oriented reasoning tasks
71
+
72
+ ## Dataset Structure
73
+
74
+ Each example contains:
75
+
76
+ | Field | Type | Description |
77
+ |-------|------|-------------|
78
+ | `pid` | string | Unique problem ID (`{scene}_{task}_{width}_{height}_{index}`) |
79
+ | `question` | string | Task description |
80
+ | `answer` | string | Expert path / solution |
81
+ | `problem_image_0` | image | Initial game state visualization |
82
+ | `resoning_thought_0` | string | First round reasoning text |
83
+ | `reasoning_image_0` | image | Intermediate reasoning visualization |
84
+ | `resoning_thought_1` | string | Second round reasoning text |
85
+ | `full_text_only_thought` | string | Complete text-only reasoning chain |
86
+ | `task` | string | Task identifier (`{scene}_{task}`) |
87
+ | `meta_info` | dict | Metadata for verification |
88
+
89
+ ### Meta Info Structure
90
 
91
+ ```json
92
+ {
93
+ "map": [[0, 1, 0], [0, 0, 1], [1, 0, 0]], // 2D list representing grid layout
94
+ "icon_info": "Icon definitions and positions",
95
+ "task_type": "navigation",
96
+ "goal_object": "target object name"
97
+ }