aaroneasy commited on
Commit
c644ed4
·
verified ·
1 Parent(s): f4b9c27

Finalize dataset card

Browse files
Files changed (1) hide show
  1. README.md +31 -39
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- license: other
3
  task_categories:
4
  - visual-question-answering
5
  - image-text-to-text
@@ -10,7 +10,8 @@ tags:
10
  - multimodal
11
  - procedural-reasoning
12
  - benchmark
13
- pretty_name: Embedded-Device Tutorial Next-Step Benchmark
 
14
  size_categories:
15
  - n<1K
16
  configs:
@@ -20,57 +21,48 @@ configs:
20
  path: data/test-*.parquet
21
  ---
22
 
23
- # Dataset Card for Embedded-Device Tutorial Next-Step Benchmark
24
 
25
- ## Dataset Summary
26
 
27
- This benchmark evaluates whether multimodal models can infer the next concrete instruction in embedded-device tutorials. Each sample is a consecutive action-step pair: the anchor action provides the current visual state, and the target action provides the instruction that the model must explain.
28
-
29
- The benchmark supports two settings:
30
-
31
- - `text_only`: completed-step history plus target action summary.
32
- - `with_images`: the same text context plus current device photo and/or computer screenshot.
33
 
34
  ## Dataset Structure
35
 
36
- The `test` split contains 216 benchmark samples from 33 selected tutorial videos. The source videos contain 249 action steps; pairing consecutive action steps within each video yields 216 samples.
37
-
38
- Columns:
39
-
40
- - `question_id`: stable sample id.
41
- - `device_image`: anchor device/hardware context, rendered as an HF `Image` column when available.
42
- - `screenshot_image`: anchor computer screenshot context, rendered as an HF `Image` column when available.
43
- - `history_summaries`: completed-step history, exactly the original prediction input from `target_step["step_so_far"].strip()`.
44
- - `task_query`: target action summary, exactly the original prediction input from `target_step["summary"].strip()`.
45
- - `answer`: ground-truth immediate instruction text curated in the release staging file `data/samples.jsonl`.
46
- - `capability`: comma-joined labels such as `hw_assembly`, `env_sw_setup`, and `code_impl`.
47
- - `video_id`, `anchor_step_index`, `target_step_index`: minimal provenance fields.
48
-
49
- Prompt text is not duplicated as a data column. The accompanying GitHub code constructs the exact text-only and multimodal prompts from `history_summaries` and `task_query`.
50
 
51
- In the paper prompt notation, `History Summaries` maps to `history_summaries`, `Task Query` maps to `task_query`, and visual context maps to `device_image` plus `screenshot_image` from the anchor/current-state action step.
52
 
53
- ## Usage
 
 
 
 
 
 
 
 
 
 
 
54
 
55
- Dataset repository: https://huggingface.co/datasets/X-EASys/EmbedCopilot-Bench
56
 
57
- ```python
58
- from datasets import load_dataset
59
 
60
- ds = load_dataset("X-EASys/EmbedCopilot-Bench")
61
- print(ds["test"][0])
62
- ```
63
 
64
- ## Benchmark Protocol
65
 
66
- For each video, sort steps with `is_action == "action"` by `step_index`, then pair consecutive action steps. The earlier action is the anchor/current state; the later action is the target. A model predicts the concrete next-step instruction. Evaluation compares the prediction to `answer` using the published rubric.
67
 
68
- For official GPT baselines, use the OpenAI Responses API directly with `OPENAI_API_KEY` only. Send `device_image` and `screenshot_image` as separate `input_image` payloads built from the original image bytes. Do not resize, crop, compress, collage, or convert images before API submission.
69
 
70
- ## Known Issues
71
 
72
- The final 216-sample payload has no missing image references. License and redistribution terms for tutorial-derived frames must be finalized before public release.
73
 
74
- ## Licensing
75
 
76
- License terms must be finalized before public release. Use `license: other` until media redistribution rights and final dataset terms are confirmed.
 
1
  ---
2
+ license: cc-by-nc-4.0
3
  task_categories:
4
  - visual-question-answering
5
  - image-text-to-text
 
10
  - multimodal
11
  - procedural-reasoning
12
  - benchmark
13
+ - computer-vision
14
+ pretty_name: EmbedCopilot-Bench
15
  size_categories:
16
  - n<1K
17
  configs:
 
21
  path: data/test-*.parquet
22
  ---
23
 
24
+ # EmbedCopilot-Bench
25
 
26
+ EmbedCopilot-Bench is a multimodal benchmark for evaluating whether vision-language models can generate the next concrete instruction in embedded-device tutorials. Each example is built from consecutive tutorial action steps: the current action step provides the visual state and completed-step history, while the following action step provides the task query and ground-truth next-step instruction.
27
 
28
+ - Dataset repository: https://huggingface.co/datasets/X-EASys/EmbedCopilot-Bench
29
+ - Code and evaluation scripts: https://github.com/X-EASys/EmbedCopilot-Bench
 
 
 
 
30
 
31
  ## Dataset Structure
32
 
33
+ The released split contains 216 test examples. The split is stored as 12 Parquet shards under `data/test-*.parquet` so that the Hugging Face Dataset Viewer can load the benchmark reliably. Together, the shards form one `test` split.
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
+ Each row contains:
36
 
37
+ | Column | Type | Description |
38
+ | --- | --- | --- |
39
+ | `question_id` | string | Unique sample identifier. |
40
+ | `device_image` | image | Device-view image for the current tutorial step. |
41
+ | `screenshot_image` | image or null | Optional software/screen-view image for the current tutorial step. |
42
+ | `history_summaries` | string | Summary of tutorial steps completed before the target step. |
43
+ | `task_query` | string | User-facing query for the target next step. |
44
+ | `answer` | string | Ground-truth next-step instruction. |
45
+ | `capability` | string | Coarse capability label, for example hardware assembly or software setup. |
46
+ | `video_id` | string | Source tutorial video identifier. |
47
+ | `anchor_step_index` | string | Current action step index within the source tutorial. |
48
+ | `target_step_index` | string | Target next action step index within the source tutorial. |
49
 
50
+ ## Evaluation Protocol
51
 
52
+ The benchmark prompt follows the paper's answer-generation setting: models receive the completed-step history, the visual context image or images, and the target task query, then generate the immediate method or instruction needed to accomplish the next step. The accompanying code repository provides scripts and a notebook for running model inference and judge-based evaluation with the released fields.
 
53
 
54
+ ## Intended Use
 
 
55
 
56
+ This dataset is intended for research on multimodal procedural reasoning, embedded-device assistance, tutorial understanding, and evaluation of vision-language models on hardware/software workflows. It is designed as an evaluation benchmark rather than a training corpus.
57
 
58
+ ## ESR Tasks
59
 
60
+ The code repository also includes ESR task materials for reproducibility, including task-level README files and Wokwi project files where applicable. These files document the expected executable behavior used in the evaluation setting.
61
 
62
+ ## License
63
 
64
+ The dataset is released under the Creative Commons Attribution-NonCommercial 4.0 International license (CC BY-NC 4.0). The accompanying code repository may include code and scripts under the license specified in that repository.
65
 
66
+ ## Citation
67
 
68
+ If you use EmbedCopilot-Bench, please cite the corresponding EmbedCopilot paper.