ShixuanAn commited on
Commit
2387e6b
1 Parent(s): a9e225e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -36
README.md CHANGED
@@ -4,33 +4,34 @@
4
  {}
5
  ---
6
 
7
- # Dataset Card for Dataset Name
8
-
9
- <!-- Provide a quick summary of the dataset. -->
10
-
11
- This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
12
-
13
  ## Dataset Details
14
 
15
  ### Dataset Description
16
 
17
- <!-- Provide a longer summary of what this dataset is. -->
18
-
 
 
 
 
 
19
 
20
 
21
  - **Curated by:** [More Information Needed]
22
  - **Funded by [optional]:** [More Information Needed]
23
  - **Shared by [optional]:** [More Information Needed]
24
  - **Language(s) (NLP):** [More Information Needed]
25
- - **License:** [More Information Needed]
26
 
27
  ### Dataset Sources [optional]
28
 
29
  <!-- Provide the basic links for the dataset. -->
30
 
31
- - **Repository:** [More Information Needed]
32
- - **Paper [optional]:** [More Information Needed]
33
- - **Demo [optional]:** [More Information Needed]
34
 
35
  ## Uses
36
 
@@ -40,19 +41,29 @@ This dataset card aims to be a base template for new datasets. It has been gener
40
 
41
  <!-- This section describes suitable use cases for the dataset. -->
42
 
43
- [More Information Needed]
44
 
45
- ### Out-of-Scope Use
46
 
47
- <!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->
48
 
49
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
- ## Dataset Structure
52
 
53
- <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
54
 
55
- [More Information Needed]
56
 
57
  ## Dataset Creation
58
 
@@ -60,11 +71,8 @@ This dataset card aims to be a base template for new datasets. It has been gener
60
 
61
  <!-- Motivation for the creation of this dataset. -->
62
 
63
- [More Information Needed]
64
 
65
- ### Source Data
66
 
67
- <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
68
 
69
  #### Data Collection and Processing
70
 
@@ -81,24 +89,11 @@ This dataset card aims to be a base template for new datasets. It has been gener
81
  ### Annotations [optional]
82
 
83
  <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
84
-
85
  #### Annotation process
86
 
87
  <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
88
 
89
- [More Information Needed]
90
-
91
- #### Who are the annotators?
92
-
93
- <!-- This section describes the people or systems who created the annotations. -->
94
-
95
- [More Information Needed]
96
-
97
- #### Personal and Sensitive Information
98
-
99
- <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
100
-
101
- [More Information Needed]
102
 
103
  ## Bias, Risks, and Limitations
104
 
 
4
  {}
5
  ---
6
 
7
+ # Dataset Card for RDD_2020
8
+ The RDD2020 dataset is a comprehensive collection of 26,336 road images from India, Japan, and the Czech Republic, annotated with over 31,000 instances of road damages. This dataset is designed to support the development and evaluation of machine learning models for automatic road damage detection, offering a valuable resource for municipalities and road agencies for efficient road condition monitoring.
 
 
 
 
9
  ## Dataset Details
10
 
11
  ### Dataset Description
12
 
13
+ - **Source:** [Mendeley Data](https://data.mendeley.com/datasets/5ty2wb6gvg/1) - DOI: 10.17632/5ty2wb6gvg.1
14
+ - **Size:** 1.13 GB
15
+ - **Format:** Images (JPEG) and Annotations (XML in PASCAL VOC format)
16
+ - **Resolution:**
17
+ - India: 720 × 720 pixels
18
+ - Japan and Czech: 600 × 600 pixels
19
+ - **Categories:** Longitudinal Cracks (D00), Transverse Cracks (D10), Alligator Cracks (D20), Potholes (D40)
20
 
21
 
22
  - **Curated by:** [More Information Needed]
23
  - **Funded by [optional]:** [More Information Needed]
24
  - **Shared by [optional]:** [More Information Needed]
25
  - **Language(s) (NLP):** [More Information Needed]
26
+ - **License:** https://creativecommons.org/licenses/by/4.0/
27
 
28
  ### Dataset Sources [optional]
29
 
30
  <!-- Provide the basic links for the dataset. -->
31
 
32
+ - **Homepage** https://data.mendeley.com/datasets/5ty2wb6gvg/1
33
+ - **Data article:** https://doi.org/10.1016/j.dib.2021.107133
34
+
35
 
36
  ## Uses
37
 
 
41
 
42
  <!-- This section describes suitable use cases for the dataset. -->
43
 
44
+ RDD2020 dataset can be directly used for developing and benchmarking machine learning models aimed at automatic detection and classification of road damages. This includes developing new deep learning architectures or modifying existing ones to improve detection accuracy across different types of road damages
45
 
 
46
 
47
+ ## Dataset Structure
48
 
49
+ The data will follow the structure below:
50
+ {
51
+ "image_id": "Czech_000248",
52
+ "country": "Czech",
53
+ "type": "train",
54
+ "image": "<PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=600x600>",
55
+ "image_path": "train/Czech/images/Czech_000248.jpg",
56
+ "crack_type": ["D20", "D20"],
57
+ "crack_coordinates": {
58
+ "x_min": [188, 3],
59
+ "x_max": [309, 171],
60
+ "y_min": [463, 438],
61
+ "y_max": [509, 519]
62
+ }
63
+ }
64
 
 
65
 
 
66
 
 
67
 
68
  ## Dataset Creation
69
 
 
71
 
72
  <!-- Motivation for the creation of this dataset. -->
73
 
 
74
 
 
75
 
 
76
 
77
  #### Data Collection and Processing
78
 
 
89
  ### Annotations [optional]
90
 
91
  <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
92
+ Each image in the dataset comes with corresponding XML files containing annotations in PASCAL VOC format. These annotations describe the location and type of road damages present in the images, categorized into four main types: Longitudinal Cracks (D00), Transverse Cracks (D10), Alligator Cracks (D20), and Potholes (D40).
93
  #### Annotation process
94
 
95
  <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
 
98
  ## Bias, Risks, and Limitations
99