Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,72 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-text
|
| 5 |
+
tags:
|
| 6 |
+
- gps
|
| 7 |
+
- geolocation
|
| 8 |
+
- computer-vision
|
| 9 |
+
- regression
|
| 10 |
+
- campus
|
| 11 |
+
pretty_name: Image2GPS Penn Campus
|
| 12 |
+
size_categories:
|
| 13 |
+
- 1K<n<10K
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# πΊοΈ Image2GPS β Penn Campus Dataset
|
| 17 |
+
|
| 18 |
+
Geotagged image dataset for predicting GPS coordinates from photos taken on the University of Pennsylvania campus.
|
| 19 |
+
|
| 20 |
+
## π Overview
|
| 21 |
+
|
| 22 |
+
| | Detail |
|
| 23 |
+
|---|---|
|
| 24 |
+
| π― **Task** | Image β GPS regression (latitude, longitude) |
|
| 25 |
+
| π **Region** | Penn campus: 33rd & Walnut β 34th & Spruce |
|
| 26 |
+
| π· **Sources** | Human-height (~1.5m) & car-height (~0.15m) |
|
| 27 |
+
| π **Metric** | Average Haversine distance (meters) β |
|
| 28 |
+
|
| 29 |
+
## π Structure
|
| 30 |
+
|
| 31 |
+
```
|
| 32 |
+
data_human/
|
| 33 |
+
βββ 01_Split_Dataset/
|
| 34 |
+
βββ train/ # ~1595 images + metadata.csv
|
| 35 |
+
βββ validation/ # ~199 images + metadata.csv
|
| 36 |
+
βββ test/ # ~200 images + metadata.csv
|
| 37 |
+
|
| 38 |
+
data_car/ # Car-height images (exploratory)
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
Each `metadata.csv` contains:
|
| 42 |
+
|
| 43 |
+
| Column | Description |
|
| 44 |
+
|--------|-------------|
|
| 45 |
+
| `file_name` | Image filename |
|
| 46 |
+
| `Latitude` | GPS latitude in decimal degrees |
|
| 47 |
+
| `Longitude` | GPS longitude in decimal degrees |
|
| 48 |
+
|
| 49 |
+
## π Quick Start
|
| 50 |
+
|
| 51 |
+
```python
|
| 52 |
+
from datasets import load_dataset
|
| 53 |
+
|
| 54 |
+
# Load human-height data
|
| 55 |
+
dataset = load_dataset("Wu52F/Image2GPS_dataset", data_dir="data_human/01_Split_Dataset")
|
| 56 |
+
|
| 57 |
+
train = dataset["train"]
|
| 58 |
+
print(train[0]) # {'image': <PIL>, 'Latitude': 39.952, 'Longitude': -75.193}
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
## π· Collection Protocol
|
| 62 |
+
|
| 63 |
+
- Photos taken along walkways on Penn campus
|
| 64 |
+
- 8 photos per location (rotating 360Β°)
|
| 65 |
+
- Phone held upright, no zoom
|
| 66 |
+
- GPS extracted from EXIF metadata
|
| 67 |
+
- HEIC images converted to JPEG with EXIF preserved
|
| 68 |
+
|
| 69 |
+
## π₯ Team
|
| 70 |
+
|
| 71 |
+
CIS 5190 Applied Machine Learning β Spring 2026
|
| 72 |
+
Team 15: Tao Wu, Yuchen Xu
|