File size: 1,381 Bytes
ec20751 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | # ADE20K Sky-Water-Person Split Files
These split files list ADE20K images that contain at least one of the
target classes (sky, water, person).
## Format
Each line is a path relative to the ADE20K image root
(`ADEChallengeData2016/images/`):
```
validation/ADE_val_00000001.jpg
training/ADE_train_00000001.jpg
```
## Expected Dataset Layout
```
ADEChallengeData2016/
βββ images/
β βββ training/
β β βββ ADE_train_00000001.jpg
β β βββ ...
β βββ validation/
β βββ ADE_val_00000001.jpg
β βββ ...
βββ annotations/
βββ training/
β βββ ADE_train_00000001.png
β βββ ...
βββ validation/
βββ ADE_val_00000001.png
βββ ...
```
## Class Mapping
ADE20K raw labels β skywater 4-class scheme:
| ADE20K ID | ADE20K Name | Target Class |
|-----------|-------------|--------------|
| 3 | sky | 1 (Sky) |
| 13 | person | 3 (Person) |
| 22 | water | 2 (Water) |
| 27 | sea | 2 (Water) |
| 61 | lake | 2 (Water) |
| 105 | pond | 2 (Water) |
| 110 | fountain | 2 (Water) |
| 114 | waterfall | 2 (Water) |
| 129 | river | 2 (Water) |
| (all others) | β | 0 (Background) |
## Obtaining ADE20K
Download from: https://groups.csail.mit.edu/vision/datasets/ADE20K/
Use the `ADEChallengeData2016` subset (training + validation).
|