nielsr HF Staff commited on
Commit
0332f6a
·
verified ·
1 Parent(s): 65f23c4

Add image-text-to-text task category and improve metadata

Browse files

Hi! I'm Niels, part of the community science team at Hugging Face.

I'm opening this PR to improve the dataset card for MyPCBench Tasks:
- Added `image-text-to-text` to the `task_categories` in the metadata.
- Moved the `arxiv` ID from the YAML tags to the markdown content (linking to the paper).
- Added explicit links to the project page and GitHub repository.
- Updated the citation to include all authors.

This helps researchers find and understand the dataset more easily on the Hub!

Files changed (1) hide show
  1. README.md +15 -25
README.md CHANGED
@@ -1,12 +1,13 @@
1
  ---
2
- license: mit
3
  language:
4
  - en
5
- pretty_name: MyPCBench Tasks
6
  size_categories:
7
  - n<1K
 
 
 
8
  tags:
9
- - arxiv:2606.16748
10
  - computer-use
11
  - agents
12
  - benchmark
@@ -24,19 +25,14 @@ configs:
24
 
25
  **A benchmark for personally intelligent computer-use agents.**
26
 
27
- This dataset is the task set and grading rubrics for
28
- [MyPCBench](https://github.com/ljang0/MyPCBench). It accompanies the VM image
29
- [`ljang0/mypcbench-qemu-baseline`](https://huggingface.co/ljang0/mypcbench-qemu-baseline)
30
- and the [paper](https://huggingface.co/papers/2606.16748).
31
 
32
- MyPCBench is a reproducible Linux-desktop benchmark seeded end-to-end from one
33
- canonical persona (Michael Scott, *The Office*). The image hosts 17
34
- pre-logged-in web apps mirroring real consumer products plus the full
35
- LibreOffice suite; the persona's records (bank transactions, emails, calendar
36
- events, chat messages, retail/grocery/food orders, web visits, rides) are
37
- **cross-linked**, so one trip leaves correlated records across every app that
38
- would plausibly book it. Agents are evaluated on tasks that require **knowing
39
- who the user is**.
40
 
41
  ## Loading
42
 
@@ -52,9 +48,7 @@ print(task["grading"]["rubrics"])
52
  ## Contents
53
 
54
  - **184 tasks**, all rubric-graded (LLM-as-judge).
55
- - `data/tasks.jsonl` — the dataset split the viewer and `load_dataset` use. One
56
- row per task, with grading rubrics inlined and the paper's behavioural-type
57
- label merged in.
58
  - `raw/` — the verbatim source files from the GitHub repo, for fidelity:
59
  - `all_tasks_with_grading.json` — flat eval input (grading inlined).
60
  - `all_tasks.json` — convenience flat list **without** grading (do not grade with this).
@@ -80,19 +74,15 @@ Each row has:
80
 
81
  ## Grading
82
 
83
- Grading is **rubric-only** (LLM-as-judge). The runner records episode
84
- completion; an offline judge scores each rubric over the full trajectory. See
85
- the [GitHub repo](https://github.com/ljang0/MyPCBench) for the runner and judge.
86
 
87
  ## Citation
88
 
89
  ```bibtex
90
  @misc{jang2026mypcbench,
91
  title = {MyPCBench: A Benchmark for Personally Intelligent Computer-Use Agents},
92
- author = {Jang, Lawrence},
93
  year = {2026},
94
  url = {https://huggingface.co/papers/2606.16748}
95
  }
96
- ```
97
-
98
- License: MIT.
 
1
  ---
 
2
  language:
3
  - en
4
+ license: mit
5
  size_categories:
6
  - n<1K
7
+ pretty_name: MyPCBench Tasks
8
+ task_categories:
9
+ - image-text-to-text
10
  tags:
 
11
  - computer-use
12
  - agents
13
  - benchmark
 
25
 
26
  **A benchmark for personally intelligent computer-use agents.**
27
 
28
+ This dataset provides the task set and grading rubrics for [MyPCBench](https://github.com/ljang0/MyPCBench).
 
 
 
29
 
30
+ - **Paper:** [MyPCBench: A Benchmark for Personally Intelligent Computer-Use Agents](https://huggingface.co/papers/2606.16748)
31
+ - **Project Page:** [https://mypcbench.com/](https://mypcbench.com/)
32
+ - **GitHub:** [https://github.com/ljang0/MyPCBench](https://github.com/ljang0/MyPCBench)
33
+ - **VM Image:** [`ljang0/mypcbench-qemu-baseline`](https://huggingface.co/ljang0/mypcbench-qemu-baseline)
34
+
35
+ MyPCBench is a reproducible Linux-desktop benchmark seeded end-to-end from one canonical persona (Michael Scott, *The Office*). The image hosts 17 pre-logged-in web apps mirroring real consumer products plus the full LibreOffice suite. The persona's records (bank transactions, emails, calendar events, chat messages, retail/grocery/food orders, web visits, rides) are **cross-linked**, so one trip leaves correlated records across every app that would plausibly book it. Agents are evaluated on tasks that require **knowing who the user is**.
 
 
36
 
37
  ## Loading
38
 
 
48
  ## Contents
49
 
50
  - **184 tasks**, all rubric-graded (LLM-as-judge).
51
+ - `data/tasks.jsonl` — the dataset split the viewer and `load_dataset` use. One row per task, with grading rubrics inlined and the paper's behavioural-type label merged in.
 
 
52
  - `raw/` — the verbatim source files from the GitHub repo, for fidelity:
53
  - `all_tasks_with_grading.json` — flat eval input (grading inlined).
54
  - `all_tasks.json` — convenience flat list **without** grading (do not grade with this).
 
74
 
75
  ## Grading
76
 
77
+ Grading is **rubric-only** (LLM-as-judge). The runner records episode completion; an offline judge scores each rubric over the full trajectory. See the [GitHub repo](https://github.com/ljang0/MyPCBench) for the runner and judge.
 
 
78
 
79
  ## Citation
80
 
81
  ```bibtex
82
  @misc{jang2026mypcbench,
83
  title = {MyPCBench: A Benchmark for Personally Intelligent Computer-Use Agents},
84
+ author = {Jang, Lawrence Keunho and Jang, Andrew Keunwoo and Koh, Jing Yu and Salakhutdinov, Ruslan},
85
  year = {2026},
86
  url = {https://huggingface.co/papers/2606.16748}
87
  }
88
+ ```