Add dataset metadata, paper links, and sample usage

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +60 -3
README.md CHANGED
@@ -1,5 +1,62 @@
1
- Link to the project: https://pageguide.github.io/
 
 
 
 
2
 
3
- Link to the paper: https://huggingface.co/papers/2604.23772
4
 
5
- Link to the code: https://github.com/tin-xai/pageguide
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - question-answering
5
+ ---
6
 
7
+ # PageGuide Dataset
8
 
9
+ This repository contains the dataset artifacts for **PageGuide**, a browser extension to assist users in navigating a webpage and locating information.
10
+
11
+ - **Project Page:** https://pageguide.github.io/
12
+ - **Paper:** [PageGuide: Browser extension to assist users in navigating a webpage and locating information](https://huggingface.co/papers/2604.23772)
13
+ - **Code:** https://github.com/tin-xai/pageguide
14
+
15
+ ---
16
+
17
+ ## Dataset Subsets
18
+
19
+ The PageGuide project releases several datasets for evaluation and research:
20
+
21
+ ### 1. `pageguide_userstudy`
22
+ Raw interaction logs from the user study — completion times, chat transcripts, correctness labels, paired statistical results, and post-study survey responses.
23
+
24
+ ### 2. `pageguide_find_data`
25
+ Task stimuli for the **Find** condition — 10 real webpages (NASA, Wikipedia, Cleveland Clinic, WWF, Britannica, JMLR) each annotated with up to 2 factual questions, ground-truth answers, and supporting evidence spans.
26
+
27
+ ### 3. `pageguide_guide_data`
28
+ Task stimuli for the **Guide** condition — 7 procedural tasks across 6 platforms (Google Sheets, Google Docs, Google Slides, Coda, TradingView, Scratch), labelled Easy or Medium difficulty.
29
+
30
+ ### 4. `pageguide_hide_data`
31
+ Task stimuli for the **Hide** condition — 37 annotated webpage snapshots (Amazon, Netflix, TechCrunch, Allrecipes, Spotify, Yelp, and more) with `(user_goal, hide_query, difficulty, hidden_elements)` annotations and ground-truth CSS selectors.
32
+
33
+ ---
34
+
35
+ ## Sample Usage
36
+
37
+ You can load these datasets using the Hugging Face `datasets` library as shown below:
38
+
39
+ ### User Study Logs
40
+ ```python
41
+ from datasets import load_dataset
42
+ tasks = load_dataset("ttn0011/pageguide_userstudy", data_files="tasks.csv", split="train").to_pandas()
43
+ paired = load_dataset("ttn0011/pageguide_userstudy", data_files="paired_times.csv", split="train").to_pandas()
44
+ ```
45
+
46
+ ### Find Task Data
47
+ ```python
48
+ from datasets import load_dataset
49
+ find_tasks = load_dataset("ttn0011/pageguide_find_data", split="train").to_pandas()
50
+ ```
51
+
52
+ ### Guide Task Data
53
+ ```python
54
+ from datasets import load_dataset
55
+ guide_tasks = load_dataset("ttn0011/pageguide_guide_data", split="train").to_pandas()
56
+ ```
57
+
58
+ ### Hide Task Data
59
+ ```python
60
+ from datasets import load_dataset
61
+ hide_tasks = load_dataset("ttn0011/pageguide_hide_data", split="train").to_pandas()
62
+ ```