Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    ValueError
Message:      Invalid string class label Deventer-512@4aabaa3485b04b1582bf841dc1381f2627659439
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
                  return get_rows(
                      dataset=dataset,
                  ...<4 lines>...
                      column_names=column_names,
                  )
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
                  rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
                File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
                  yield from ds.decode(False) if ds.features else ds
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2386, in __iter__
                  example = _apply_feature_types_on_example(
                      example, self.features, token_per_repo_id=self.token_per_repo_id
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2303, in _apply_feature_types_on_example
                  encoded_example = features.encode_example(example)
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 2178, in encode_example
                  return encode_nested_example(self, example)
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1460, in encode_nested_example
                  {k: encode_nested_example(schema[k], obj.get(k), level=level + 1) for k in schema}
                      ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1483, in encode_nested_example
                  return schema.encode_example(obj) if obj is not None else None
                         ~~~~~~~~~~~~~~~~~~~~~^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1158, in encode_example
                  example_data = self.str2int(example_data)
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1095, in str2int
                  output = [self._strval2int(value) for value in values]
                            ~~~~~~~~~~~~~~~~^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1116, in _strval2int
                  raise ValueError(f"Invalid string class label {value}")
              ValueError: Invalid string class label Deventer-512@4aabaa3485b04b1582bf841dc1381f2627659439

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Deventer-512

Dataset Summary

Deventer-512 is the benchmark dataset introduced in our paper ACPV-Net: All-Class Polygonal Vectorization for Seamless Vector Map Generation from Aerial Imagery. It is the first public benchmark for All-Class Polygonal Vectorization (ACPV), a task that aims to generate a complete vector map from aerial imagery in a single run by producing polygons for all land-cover classes with shared boundaries and without gaps or overlaps.

The dataset contains 2,148 orthophoto tiles of size 512 x 512 pixels, together with raster masks and per-class COCO-style polygon annotations. It is designed for standardized evaluation of semantic fidelity, geometric accuracy, vertex efficiency, per-class topological fidelity, and global topological consistency.

The benchmark is organized around five semantically meaningful urban land-cover categories:

  • building
  • road
  • vegetation
  • water
  • unvegetated

Supported Tasks

Deventer-512 supports the following research tasks:

  • All-Class Polygonal Vectorization (ACPV): seamless multi-class vector map generation over the full image domain with shared boundaries and no gaps or overlaps
  • Multi-class semantic segmentation: dense semantic prediction using the provided raster masks
  • Single-class polygonal vectorization: category-wise polygon extraction such as building outline extraction or road region vectorization
  • Instance segmentation and object detection: supported for categories and settings where COCO-style polygon annotations are appropriate

Data Composition

Each split follows the same directory structure:

deventer_512/
β”œβ”€β”€ train/
β”‚   β”œβ”€β”€ images/
β”‚   β”œβ”€β”€ masks/
β”‚   └── annotations/
β”œβ”€β”€ val/
β”‚   β”œβ”€β”€ images/
β”‚   β”œβ”€β”€ masks/
β”‚   └── annotations/
└── test/
    β”œβ”€β”€ images/
    β”œβ”€β”€ masks/
    └── annotations/

Splits

The official split sizes are:

Split Number of tiles
train 1716
val 212
test 220

Total: 2,148 image tiles.

Files in Each Split

  • images/: RGB orthophoto tiles in PNG format
  • masks/: raster semantic masks aligned with the image tiles
  • annotations/: per-class COCO-style polygon annotations

The annotations/ folder contains one JSON file per class:

  • building.json
  • road.json
  • vegetation.json
  • water.json
  • unvegetated.json

Annotation Format

Polygon annotations are stored in standard COCO-style JSON format. Each annotation file corresponds to a single semantic category and contains:

  • categories
  • images
  • annotations

Each images entry provides:

  • id
  • file_name
  • height
  • width

Each annotations entry provides:

  • id
  • image_id
  • category_id
  • segmentation
  • area
  • bbox
  • iscrowd

Citation

If you use Deventer-512 in your research, please cite:

@InProceedings{Jiao_2026_CVPR,
    author    = {Jiao, Weiqin and Cheng, Hao and Vosselman, George and Persello, Claudio},
    title     = {ACPV-Net: All-Class Polygonal Vectorization for Seamless Vector Map Generation from Aerial Imagery},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
    month     = {June},
    year      = {2026},
    pages     = {13244-13253}
}
Downloads last month
82