File size: 1,856 Bytes
81ac973
a37104f
 
 
 
 
81ac973
 
 
 
 
 
 
a37104f
 
81ac973
 
 
 
a37104f
 
 
 
81ac973
 
a37104f
 
81ac973
a37104f
 
 
 
 
 
 
81ac973
35af890
81ac973
35af890
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
49
50
51
52
53
54
55
56
57
58
59
---
license: gpl-3.0
size_categories:
- n<1K
task_categories:
- image-to-image
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: test
    path: data/test-*
  - split: validation
    path: data/validation-*
dataset_info:
  features:
  - name: image
    dtype: image
  - name: segment
    dtype: image
  - name: lane
    dtype: image
  splits:
  - name: train
    num_bytes: 72551321.0
    num_examples: 160
  - name: test
    num_bytes: 8756556.0
    num_examples: 20
  - name: validation
    num_bytes: 9100529.0
    num_examples: 20
  download_size: 90167475
  dataset_size: 90408406.0
---
# About

This dataset is for detecting the drivable area and lane lines on the roads. Images are generated using stable diffusion model and images are annotated using labelme annotator.

For more info on the project we worked see this git [repo](https://github.com/balnarendrasapa/road-detection)

# Dataset

The dataset is structured into three distinct partitions: Train, Test, and Validation. The Train split comprises 80% of the dataset, containing both the input images and their corresponding labels. Meanwhile, the Test and Validation splits each contain 10% of the data, with a similar structure, consisting of image data and label information. Within each of these splits, there are three folders:

- Images: This folder contains the original images, serving as the raw input data for the task at hand.

- Segments: Here, you can access the labels specifically designed for Drivable Area Segmentation, crucial for understanding road structure and drivable areas.

- Lane: This folder contains labels dedicated to Lane Detection, assisting in identifying and marking lanes on the road.

# Downloading the dataset

```python
from datasets import load_dataset

dataset = load_dataset("bnsapa/road-detection")
```