aaroneasy commited on
Commit
cdc5d04
·
verified ·
1 Parent(s): 2ca31a7

Initialize sharded dataset card

Browse files
Files changed (1) hide show
  1. README.md +74 -1
README.md CHANGED
@@ -1,3 +1,76 @@
1
  ---
2
- license: cc-by-nc-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ task_categories:
4
+ - visual-question-answering
5
+ - image-text-to-text
6
+ language:
7
+ - en
8
+ tags:
9
+ - embedded-systems
10
+ - multimodal
11
+ - procedural-reasoning
12
+ - benchmark
13
+ pretty_name: Embedded-Device Tutorial Next-Step Benchmark
14
+ size_categories:
15
+ - n<1K
16
+ configs:
17
+ - config_name: default
18
+ data_files:
19
+ - split: test
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.