Datasets:
File size: 732 Bytes
4d08ebd | 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 | ---
license: mit
task_categories:
- image-segmentation
pretty_name: OpenEarthMap COCO
size_categories:
- 1K<n<10K
---
# OpenEarthMap - COCO Segmentation Format
Dataset de segmentacion semantica de imagenes satelitales preparado para SAM (Segment Anything Model).
## Clases
| ID | Nombre |
|----|-------------------|
| 1 | bareland |
| 2 | rangeland |
| 3 | developed_space |
| 4 | road |
| 5 | tree |
| 6 | water |
| 7 | agriculture_land |
| 8 | building |
## Formato
- Imagenes: TIF RGB 1024x1024
- Anotaciones: COCO JSON con RLE masks (iscrowd=1)
## Como cargar
from datasets import load_dataset
ds = load_dataset("CrisTaf/sementationAi")
|