Improve dataset card with metadata, description, and sample usage
Browse filesThis PR improves the dataset card by adding YAML metadata (license and task category) and structured markdown content that describes the PageGuide datasets with their respective usage examples found in the GitHub repository.
README.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- other
|
| 4 |
+
license: mit
|
| 5 |
+
---
|
| 6 |
|
| 7 |
+
# PageGuide Dataset
|
| 8 |
|
| 9 |
+
This repository contains dataset artifacts from the paper [PageGuide: Browser extension to assist users in navigating a webpage and locating information](https://huggingface.co/papers/2604.23772).
|
| 10 |
+
|
| 11 |
+
* **Project Page:** https://pageguide.github.io/
|
| 12 |
+
* **Repository:** https://github.com/tin-xai/pageguide
|
| 13 |
+
* **Paper:** [Hugging Face Paper Page](https://huggingface.co/papers/2604.23772)
|
| 14 |
+
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
## Dataset Description
|
| 18 |
+
|
| 19 |
+
PageGuide was evaluated in a controlled within-subjects user study. The evaluation data is structured into four datasets:
|
| 20 |
+
|
| 21 |
+
### 1. `pageguide_userstudy`
|
| 22 |
+
* **Purpose:** Raw interaction logs from the user study — completion times, chat transcripts, correctness labels, paired statistical results, and post-study survey responses.
|
| 23 |
+
* **Sample Usage:**
|
| 24 |
+
```python
|
| 25 |
+
from datasets import load_dataset
|
| 26 |
+
tasks = load_dataset("ttn0011/pageguide_userstudy", data_files="tasks.csv", split="train").to_pandas()
|
| 27 |
+
paired = load_dataset("ttn0011/pageguide_userstudy", data_files="paired_times.csv", split="train").to_pandas()
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
### 2. `pageguide_find_data`
|
| 31 |
+
* **Purpose:** 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.
|
| 32 |
+
* **Sample Usage:**
|
| 33 |
+
```python
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
find_tasks = load_dataset("ttn0011/pageguide_find_data", split="train").to_pandas()
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
### 3. `pageguide_guide_data`
|
| 39 |
+
* **Purpose:** 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.
|
| 40 |
+
* **Sample Usage:**
|
| 41 |
+
```python
|
| 42 |
+
from datasets import load_dataset
|
| 43 |
+
guide_tasks = load_dataset("ttn0011/pageguide_guide_data", split="train").to_pandas()
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
### 4. `pageguide_hide_data`
|
| 47 |
+
* **Purpose:** 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.
|
| 48 |
+
* **Sample Usage:**
|
| 49 |
+
```python
|
| 50 |
+
from datasets import load_dataset
|
| 51 |
+
hide_tasks = load_dataset("ttn0011/pageguide_hide_data", split="train").to_pandas()
|
| 52 |
+
```
|