Files changed (1) hide show
  1. README.md +22 -2
README.md CHANGED
@@ -34,6 +34,26 @@ dataset_info:
34
  download_size: 90167475
35
  dataset_size: 90408406.0
36
  ---
37
- # Dataset Card for "road-detection"
38
 
39
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  download_size: 90167475
35
  dataset_size: 90408406.0
36
  ---
37
+ # About
38
 
39
+ 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.
40
+
41
+ For more info on the project we worked see this git [repo](https://github.com/balnarendrasapa/road-detection)
42
+
43
+ # Dataset
44
+
45
+ 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:
46
+
47
+ - Images: This folder contains the original images, serving as the raw input data for the task at hand.
48
+
49
+ - Segments: Here, you can access the labels specifically designed for Drivable Area Segmentation, crucial for understanding road structure and drivable areas.
50
+
51
+ - Lane: This folder contains labels dedicated to Lane Detection, assisting in identifying and marking lanes on the road.
52
+
53
+ # Downloading the dataset
54
+
55
+ ```python
56
+ from datasets import load_dataset
57
+
58
+ dataset = load_dataset("bnsapa/road-detection")
59
+ ```