huzican commited on
Commit
c2f6b19
·
verified ·
1 Parent(s): 1950a32

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ dtype: string
24
+ splits:
25
+ - name: test
26
+ num_bytes: 6390444
27
+ num_examples: 100
28
+ download_size: 6390444
29
+ dataset_size: 6390444
30
+ configs:
31
+ - config_name: default
32
+ data_files:
33
+ - split: test
34
+ path: data/*
35
+ task_categories:
36
+ - any-to-any
37
+ language:
38
+ - en
39
+ tags:
40
+ - multimodal
41
+ - chain-of-thought
42
+ size_categories:
43
+ - 1K<n<10K
44
+ ---
45
+
46
+ # Game Reasoning Dataset
47
+
48
+ A multimodal reasoning dataset for game navigation and puzzle-solving tasks.
49
+
50
+ ## Dataset Description
51
+
52
+ This dataset contains 100 visual reasoning examples from various game scenarios.
53
+
54
+ ## Usage
55
+
56
+ ```python
57
+ from datasets import load_dataset
58
+
59
+ dataset = load_dataset("huzican/eval_map_size")
60
+
61
+ 运行
62
+