Jialuo21 commited on
Commit
d0cb528
·
verified ·
1 Parent(s): ba8d78b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -65
README.md CHANGED
@@ -1,67 +1,91 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: sample_id
5
- dtype: string
6
- - name: suite
7
- dtype: string
8
- - name: subset
9
- dtype: string
10
- - name: category
11
- dtype: string
12
- - name: subtask
13
- dtype: string
14
- - name: task_kind
15
- dtype: string
16
- - name: prompt
17
- dtype: string
18
- - name: turn_prompts
19
- list: string
20
- - name: num_turns
21
- dtype: int32
22
- - name: source_image_relpath
23
- dtype: string
24
- - name: source_image
25
- dtype: image
26
- - name: reference_image_relpath
27
- dtype: string
28
- - name: reference_image
29
- dtype: image
30
- - name: reference
31
- dtype: string
32
- - name: reference_txt
33
- dtype: string
34
- - name: reference_old
35
- dtype: string
36
- - name: problem
37
- dtype: string
38
- - name: consistency_free
39
- dtype: bool
40
- - name: reasoning_img
41
- dtype: bool
42
- - name: reasoning_img_op
43
- dtype: bool
44
- - name: reasoning_wo_ins
45
- dtype: bool
46
- - name: eval_protocol
47
- dtype: string
48
- - name: source_repo
49
- dtype: string
50
- - name: source_metadata_file
51
- dtype: string
52
- - name: source_archive_member
53
- dtype: string
54
- - name: reference_archive_member
55
- dtype: string
56
- splits:
57
- - name: test
58
- num_bytes: 283887033
59
- num_examples: 360
60
- download_size: 283797322
61
- dataset_size: 283887033
62
- configs:
63
- - config_name: default
64
- data_files:
65
- - split: test
66
- path: data/test-*
67
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - image-to-image
5
+ pretty_name: RISEBench
6
+ size_categories:
7
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ---
9
+
10
+ # RISEBench
11
+
12
+ This is a normalized Hugging Face version of the official RISEBench benchmark data, prepared for direct benchmark consumption in `T2I-Eval`.
13
+
14
+ ## Source
15
+
16
+ - Official dataset repo: `PhoenixZ/RISEBench`
17
+ - Official code repo: `VisionXLab/RISEBench`
18
+ - Source artifacts used here:
19
+ - `datav2_total_w_subtask.json`
20
+ - `data.zip`
21
+
22
+ ## What is included
23
+
24
+ This repo contains the official full benchmark input images and metadata reorganized into one `test` split with a stable schema.
25
+
26
+ Category counts:
27
+
28
+ - `temporal_reasoning`: 85 rows
29
+ - `causal_reasoning`: 90 rows
30
+ - `spatial_reasoning`: 100 rows
31
+ - `logical_reasoning`: 85 rows
32
+
33
+ Total rows: `360`
34
+
35
+ ## Normalization choices
36
+
37
+ - Unified the benchmark into a single `test` split.
38
+ - Stored benchmark routing fields as `suite=risebench` and `subset=<category>`.
39
+ - Preserved the official benchmark id in `sample_id`.
40
+ - Stored source images in `source_image` as Hugging Face `Image` features.
41
+ - Stored optional reference images in `reference_image` when provided by the official data.
42
+ - Preserved the official instruction as both `prompt` and `turn_prompts=[prompt]` for compatibility with the shared image-edit runtime.
43
+ - Preserved official evaluation hints such as `consistency_free`, `reasoning_img`, `reasoning_wo_ins`, and `subtask`.
44
+
45
+ ## Schema
46
+
47
+ Main columns:
48
+
49
+ - `sample_id`: official benchmark sample id
50
+ - `suite`: constant `risebench`
51
+ - `subset`: category token used for output grouping
52
+ - `category`: reasoning category
53
+ - `subtask`: official fine-grained task label
54
+ - `task_kind`: constant `single_turn`
55
+ - `prompt`: edit instruction
56
+ - `turn_prompts`: list containing the prompt
57
+ - `num_turns`: always `1`
58
+ - `source_image_relpath`: original relative source path
59
+ - `source_image`: source image
60
+ - `reference_image_relpath`: optional relative reference image path
61
+ - `reference_image`: optional reference image
62
+ - `reference`: official reference description text
63
+ - `reference_txt`: optional official text answer for logical tasks
64
+ - `reference_old`: optional legacy reference description
65
+ - `problem`: optional official problem marker
66
+ - `consistency_free`: whether appearance-consistency scoring is skipped
67
+ - `reasoning_img`: whether the official reasoning judge uses an additional image input
68
+ - `reasoning_img_op`: optional official flag preserved from source
69
+ - `reasoning_wo_ins`: whether the official logical judge omits the instruction
70
+ - `eval_protocol`: normalized evaluation protocol label
71
+ - `source_repo`: upstream dataset repo id
72
+ - `source_metadata_file`: upstream metadata filename
73
+ - `source_archive_member`: original member path inside `data.zip`
74
+ - `reference_archive_member`: original reference-image member path inside `data.zip`
75
+
76
+ ## Usage
77
+
78
+ ```python
79
+ from datasets import load_dataset
80
+
81
+ ds = load_dataset("Jialuo21/RISEBench", split="test")
82
+ print(ds[0]["sample_id"], ds[0]["category"], ds[0]["prompt"])
83
+ ```
84
+
85
+ Example access pattern:
86
+
87
+ ```python
88
+ row = ds[0]
89
+ source = row["source_image"]
90
+ reference = row["reference_image"]
91
+ ```