File size: 1,074 Bytes
c2f6b19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: pid
    dtype: string
  - name: question
    dtype: string
  - name: answer
    dtype: string
  - name: problem_image_0
    dtype: image
  - name: resoning_thought_0
    dtype: string
  - name: reasoning_image_0
    dtype: image
  - name: resoning_thought_1
    dtype: string
  - name: task
    dtype: string
  - name: full_text_only_thought
    dtype: string
  - name: meta_info
    dtype: string
  splits:
  - name: test
    num_bytes: 6390444
    num_examples: 100
  download_size: 6390444
  dataset_size: 6390444
configs:
- config_name: default
  data_files:
  - split: test
    path: data/*
task_categories:
- any-to-any
language:
- en
tags:
- multimodal
- chain-of-thought
size_categories:
- 1K<n<10K
---

# Game Reasoning Dataset

A multimodal reasoning dataset for game navigation and puzzle-solving tasks.

## Dataset Description

This dataset contains 100 visual reasoning examples from various game scenarios.

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("huzican/eval_map_size")

运行