Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ size_categories:
|
|
| 24 |
PM25Vision (PM25V) is a large-scale dataset for estimating air quality (PM2.5) from street-level imagery. It pairs **Mapillary** photos with **World Air Quality Index (WAQI)** PM2.5 records, covering 2014–2025, 3,261 monitoring stations, and 11,114 cleaned and balanced images.
|
| 25 |
|
| 26 |
## Tasks
|
| 27 |
-
- **Regression**: Predict continuous PM2.5 values.
|
| 28 |
- **Classification**: Predict discrete AQI levels.
|
| 29 |
|
| 30 |
## Baseline Results
|
|
@@ -54,20 +54,20 @@ The dataset is organized into two main splits: **train** and **test**, each cont
|
|
| 54 |
|
| 55 |
Each row in `metadata.csv` contains:
|
| 56 |
|
| 57 |
-
| Field | Type | Description
|
| 58 |
-
|
| 59 |
-
| **`
|
| 60 |
-
| `station_id` | int64 | WAQI monitoring station ID.
|
| 61 |
-
| `captured_at` | object | Date when the image was captured (YYYY-MM-DD).
|
| 62 |
-
| `camera_angle` | float64 | Camera orientation (if available).
|
| 63 |
-
| `longitude` | float64 | Longitude of the station.
|
| 64 |
-
| `latitude` | float64 | Latitude of the station.
|
| 65 |
-
| `quality_score`| float64 | Image quality score from Mapillary (if available).
|
| 66 |
-
| `downloaded_at`| object | Timestamp when the sample was downloaded.
|
| 67 |
-
| **`
|
| 68 |
-
| `filename` | object | Image filename, located in the `images/` directory.
|
| 69 |
-
| `quality` | object | ResNet18 classified label for image quality (e.g., `good` or `bad`).
|
| 70 |
-
| `pm25_bin` | object | Discrete AQI level label (e.g., `0–50`, `51–100`, etc.).
|
| 71 |
|
| 72 |
### Splits
|
| 73 |
|
|
|
|
| 24 |
PM25Vision (PM25V) is a large-scale dataset for estimating air quality (PM2.5) from street-level imagery. It pairs **Mapillary** photos with **World Air Quality Index (WAQI)** PM2.5 records, covering 2014–2025, 3,261 monitoring stations, and 11,114 cleaned and balanced images.
|
| 25 |
|
| 26 |
## Tasks
|
| 27 |
+
- **Regression**: Predict continuous PM2.5 **AQI** values.
|
| 28 |
- **Classification**: Predict discrete AQI levels.
|
| 29 |
|
| 30 |
## Baseline Results
|
|
|
|
| 54 |
|
| 55 |
Each row in `metadata.csv` contains:
|
| 56 |
|
| 57 |
+
| Field | Type | Description |
|
| 58 |
+
|----------------|---------|----------------------------------------------------------------------|
|
| 59 |
+
| `**image_id**` | int64 | Unique image identifier (from Mapillary). |
|
| 60 |
+
| `station_id` | int64 | WAQI monitoring station ID. |
|
| 61 |
+
| `captured_at` | object | Date when the image was captured (YYYY-MM-DD). |
|
| 62 |
+
| `camera_angle` | float64 | Camera orientation (if available). |
|
| 63 |
+
| `longitude` | float64 | Longitude of the station. |
|
| 64 |
+
| `latitude` | float64 | Latitude of the station. |
|
| 65 |
+
| `quality_score`| float64 | Image quality score from Mapillary (if available). |
|
| 66 |
+
| `downloaded_at`| object | Timestamp when the sample was downloaded. |
|
| 67 |
+
| `**pm25**` | float64 | Average PM2.5 AQI value of the day that the image was captured. |
|
| 68 |
+
| `filename` | object | Image filename, located in the `images/` directory. |
|
| 69 |
+
| `quality` | object | ResNet18 classified label for image quality (e.g., `good` or `bad`). |
|
| 70 |
+
| `pm25_bin` | object | Discrete AQI level label (e.g., `0–50`, `51–100`, etc.). |
|
| 71 |
|
| 72 |
### Splits
|
| 73 |
|