You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Dataset Card for Sidewalks

This dataset comprises a collection of sidewalk images stored in a streamable format. It includes separate sets of Parquet files designated for training and validation, each with its respective split of data. Within the Parquet files, the dataset features information such as filenames, where image data is encoded as bytes, along with corresponding tfw files also encoded as bytes.

Code to stream train split

from datasets import load_dataset
dataset = load_dataset("aegean-ai/sidewalks", split='test', streaming=True)
print(next(iter(dataset)))

Code to stream val split

from datasets import load_dataset
dataset = load_dataset("aegean-ai/sidewalks", split='val', streaming=True)
print(next(iter(dataset)))
Downloads last month
376

Models trained or fine-tuned on aegean-ai/sidewalks