Improve dataset card with metadata and sample usage
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
---
|
| 6 |
|
| 7 |
+
# PageGuide Dataset
|
| 8 |
|
| 9 |
+
This repository contains the dataset for **PageGuide**, a browser extension that assists users in navigating webpages and locating information by grounding LLM answers directly in the HTML DOM.
|
| 10 |
+
|
| 11 |
+
* **Project Page:** [pageguide.github.io](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:** [github.com/tin-xai/pageguide](https://github.com/tin-xai/pageguide)
|
| 14 |
+
|
| 15 |
+
## Dataset Description
|
| 16 |
+
|
| 17 |
+
The PageGuide evaluation utilizes several distinct datasets representing different tasks:
|
| 18 |
+
|
| 19 |
+
1. **`pageguide_userstudy`**: Raw interaction logs from the user study — completion times, chat transcripts, correctness labels, paired statistical results, and post-study survey responses.
|
| 20 |
+
2. **`pageguide_find_data`**: 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.
|
| 21 |
+
3. **`pageguide_guide_data`**: 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.
|
| 22 |
+
4. **`pageguide_hide_data`**: 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.
|
| 23 |
+
|
| 24 |
+
## Sample Usage
|
| 25 |
+
|
| 26 |
+
You can load these datasets using the Hugging Face `datasets` library:
|
| 27 |
+
|
| 28 |
+
### User Study Data
|
| 29 |
+
```python
|
| 30 |
+
from datasets import load_dataset
|
| 31 |
+
tasks = load_dataset("ttn0011/pageguide_userstudy", data_files="tasks.csv", split="train").to_pandas()
|
| 32 |
+
paired = load_dataset("ttn0011/pageguide_userstudy", data_files="paired_times.csv", split="train").to_pandas()
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
### Find Task Data
|
| 36 |
+
```python
|
| 37 |
+
from datasets import load_dataset
|
| 38 |
+
find_tasks = load_dataset("ttn0011/pageguide_find_data", split="train").to_pandas()
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
### Guide Task Data
|
| 42 |
+
```python
|
| 43 |
+
from datasets import load_dataset
|
| 44 |
+
guide_tasks = load_dataset("ttn0011/pageguide_guide_data", split="train").to_pandas()
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
### Hide Task Data
|
| 48 |
+
```python
|
| 49 |
+
from datasets import load_dataset
|
| 50 |
+
hide_tasks = load_dataset("ttn0011/pageguide_hide_data", split="train").to_pandas()
|
| 51 |
+
```
|