Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# PolyCAT: Polygon-Aperture Eye-Tracking Dataset
|
| 2 |
|
| 3 |
PolyCAT is a public eye-tracking dataset for studying visual attention on natural images viewed through irregular polygon apertures. The dataset is designed to support saliency prediction, gaze modeling, and research on how geometric viewing constraints affect visual exploration strategies.
|
|
@@ -18,23 +34,16 @@ PolyCAT is a public eye-tracking dataset for studying visual attention on natura
|
|
| 18 |
```
|
| 19 |
PolyCAT/
|
| 20 |
├── data/
|
| 21 |
-
│ ├──
|
| 22 |
-
│ ├── manifests/ # Stimulus manifest, polygon geometry, demographics
|
| 23 |
│ ├── gaze/ # Sample-level gaze streams (TSV, one per session)
|
| 24 |
│ ├── fixations/ # Fixation events (CSV, global + per-participant)
|
| 25 |
│ ├── saliency_maps/ # Empirical fixation density maps per polygon-image
|
| 26 |
│ ├── scanpaths/ # Per-trial fixation sequences
|
| 27 |
-
│
|
| 28 |
-
│ ├── metadata/ # Consolidated tables: participants, sessions, trials, quality
|
| 29 |
-
│ └── derivatives/ # Summary tables and computed features
|
| 30 |
├── code/
|
| 31 |
-
│ ├── preprocessing/ # EDF conversion, metadata normalization, quality metrics
|
| 32 |
-
│ ├── evaluation/ # Saliency metrics (AUC, NSS, CC, KL, SIM, IG)
|
| 33 |
-
│ ├── visualization/ # Plotting utilities
|
| 34 |
│ └── examples/ # Quickstart scripts and notebooks
|
| 35 |
-
├──
|
| 36 |
-
|
| 37 |
-
└── paper/ # ETRA 2026 submission
|
| 38 |
```
|
| 39 |
|
| 40 |
## Getting Started
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- eye-tracking
|
| 7 |
+
- saliency
|
| 8 |
+
- visual-attention
|
| 9 |
+
- gaze
|
| 10 |
+
- fixations
|
| 11 |
+
- polygonal-aperture
|
| 12 |
+
pretty_name: "PolyCAT: Polygon-Aperture Eye-Tracking Dataset"
|
| 13 |
+
size_categories:
|
| 14 |
+
- 100K<n<1M
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
# PolyCAT: Polygon-Aperture Eye-Tracking Dataset
|
| 18 |
|
| 19 |
PolyCAT is a public eye-tracking dataset for studying visual attention on natural images viewed through irregular polygon apertures. The dataset is designed to support saliency prediction, gaze modeling, and research on how geometric viewing constraints affect visual exploration strategies.
|
|
|
|
| 34 |
```
|
| 35 |
PolyCAT/
|
| 36 |
├── data/
|
| 37 |
+
│ ├── metadata/ # Consolidated tables: participants, sessions, trials, quality
|
|
|
|
| 38 |
│ ├── gaze/ # Sample-level gaze streams (TSV, one per session)
|
| 39 |
│ ├── fixations/ # Fixation events (CSV, global + per-participant)
|
| 40 |
│ ├── saliency_maps/ # Empirical fixation density maps per polygon-image
|
| 41 |
│ ├── scanpaths/ # Per-trial fixation sequences
|
| 42 |
+
│ └── stimuli/ # CAT2000 images and polygon definitions (JSON)
|
|
|
|
|
|
|
| 43 |
├── code/
|
|
|
|
|
|
|
|
|
|
| 44 |
│ └── examples/ # Quickstart scripts and notebooks
|
| 45 |
+
├── manifests/ # Stimulus manifest, polygon geometry
|
| 46 |
+
└── docs/ # Data dictionary, file formats, acquisition protocol
|
|
|
|
| 47 |
```
|
| 48 |
|
| 49 |
## Getting Started
|