sg7372 commited on
Commit
e76c7b9
1 Parent(s): 5ae8d25

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md CHANGED
@@ -28,3 +28,21 @@ configs:
28
  - split: val
29
  path: data/val-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  - split: val
29
  path: data/val-*
30
  ---
31
+
32
+ # Dataset Card for Sidewalks
33
+
34
+ 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.
35
+
36
+ ## Code to stream train split
37
+ ```
38
+ from datasets import load_dataset
39
+ dataset = load_dataset("back2classroom/sidewalks", split='test', streaming=True)
40
+ print(next(iter(dataset)))
41
+ ```
42
+
43
+ ## Code to stream val split
44
+ ```
45
+ from datasets import load_dataset
46
+ dataset = load_dataset("back2classroom/sidewalks", split='val', streaming=True)
47
+ print(next(iter(dataset)))
48
+ ```