File size: 1,300 Bytes
cbfb4df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ae8d25
 
 
 
 
cbfb4df
 
 
 
 
5ae8d25
 
cbfb4df
e76c7b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: filename
    dtype: string
  - name: tfw
    dtype: binary
  - name: tif
    dtype: binary
  - name: label_tif
    dtype: binary
  - name: label_tfw
    dtype: binary
  splits:
  - name: train
    num_bytes: 2739248440
    num_examples: 180000
  - name: val
    num_bytes: 297399599
    num_examples: 19999
  download_size: 2804405571
  dataset_size: 3036648039
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: val
    path: data/val-*
---

# 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("back2classroom/sidewalks", split='test', streaming=True)
print(next(iter(dataset)))
```

## Code to stream val split
```
from datasets import load_dataset
dataset = load_dataset("back2classroom/sidewalks", split='val', streaming=True)
print(next(iter(dataset)))
```