dgural commited on
Commit
6d57d4a
1 Parent(s): 42e6f8b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -85
README.md CHANGED
@@ -64,9 +64,10 @@ dataset_summary: '
64
 
65
  # Dataset Card for bdd100k-validation
66
 
67
- <!-- Provide a quick summary of the dataset. -->
68
-
69
 
 
 
 
70
 
71
 
72
  ![image/png](dataset_preview.gif)
@@ -121,110 +122,57 @@ session = fo.launch_app(dataset)
121
 
122
  ## Uses
123
 
124
- <!-- Address questions around how the dataset is intended to be used. -->
125
 
126
  ### Direct Use
127
 
128
- <!-- This section describes suitable use cases for the dataset. -->
129
 
130
  [More Information Needed]
131
 
132
- ### Out-of-Scope Use
133
-
134
- <!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->
135
 
136
  [More Information Needed]
137
 
138
  ## Dataset Structure
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
 
140
- <!-- 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. -->
141
-
142
- [More Information Needed]
143
-
144
- ## Dataset Creation
145
-
146
- ### Curation Rationale
147
-
148
- <!-- Motivation for the creation of this dataset. -->
149
 
150
- [More Information Needed]
151
 
152
  ### Source Data
153
 
154
- <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
155
 
156
- #### Data Collection and Processing
157
-
158
- <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
159
-
160
- [More Information Needed]
161
 
162
  #### Who are the source data producers?
163
 
164
- <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
165
-
166
- [More Information Needed]
167
-
168
- ### Annotations [optional]
169
-
170
- <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
171
-
172
- #### Annotation process
173
-
174
- <!-- 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. -->
175
-
176
- [More Information Needed]
177
-
178
- #### Who are the annotators?
179
-
180
- <!-- This section describes the people or systems who created the annotations. -->
181
-
182
- [More Information Needed]
183
-
184
- #### Personal and Sensitive Information
185
 
186
- <!-- 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. -->
187
 
188
- [More Information Needed]
189
-
190
- ## Bias, Risks, and Limitations
191
-
192
- <!-- This section is meant to convey both technical and sociotechnical limitations. -->
193
-
194
- [More Information Needed]
195
-
196
- ### Recommendations
197
-
198
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
199
-
200
- Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
201
-
202
- ## Citation [optional]
203
-
204
- <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
205
 
206
  **BibTeX:**
207
 
208
- [More Information Needed]
209
-
210
- **APA:**
211
-
212
- [More Information Needed]
213
-
214
- ## Glossary [optional]
215
-
216
- <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
217
-
218
- [More Information Needed]
219
-
220
- ## More Information [optional]
221
-
222
- [More Information Needed]
223
-
224
- ## Dataset Card Authors [optional]
225
-
226
- [More Information Needed]
227
-
228
- ## Dataset Card Contact
229
-
230
- [More Information Needed]
 
64
 
65
  # Dataset Card for bdd100k-validation
66
 
 
 
67
 
68
+ From one of the largest open source driving datasets, [BDD100k](https://www.vis.xyz/bdd100k/), is the BDD100K images dataset.
69
+ The dataset consists of every 10th second in the videos and contains a train, validation and test split.
70
+ It contains labels for object detection, weather, time of day, and scene of the driving!
71
 
72
 
73
  ![image/png](dataset_preview.gif)
 
122
 
123
  ## Uses
124
 
125
+ By downoading, you are agreeing to the [BDD100K License](https://doc.bdd100k.com/license.html#license).
126
 
127
  ### Direct Use
128
 
129
+ This dataset is great for self driving car applications, especially for dealing with many different weather conditions and different times of day!
130
 
131
  [More Information Needed]
132
 
 
 
 
133
 
134
  [More Information Needed]
135
 
136
  ## Dataset Structure
137
+ ```
138
+ Name: bdd100k-validation
139
+ Media type: image
140
+ Num samples: 10000
141
+ Persistent: True
142
+ Tags: []
143
+ Sample fields:
144
+ id: fiftyone.core.fields.ObjectIdField
145
+ filepath: fiftyone.core.fields.StringField
146
+ tags: fiftyone.core.fields.ListField(fiftyone.core.fields.StringField)
147
+ metadata: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.metadata.ImageMetadata)
148
+ weather: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Classification)
149
+ timeofday: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Classification)
150
+ scene: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Classification)
151
+ detections: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Detections)
152
+ ```
153
+
154
 
 
 
 
 
 
 
 
 
 
155
 
 
156
 
157
  ### Source Data
158
 
159
+ The dataset is sourced from [BDD100K: A Diverse Driving Dataset for Heterogeneous Multitask Learning](https://arxiv.org/abs/1805.04687)
160
 
 
 
 
 
 
161
 
162
  #### Who are the source data producers?
163
 
164
+ BDD100K is now managed by the [ETH VIS Group](https://www.vis.xyz/bdd100k/)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
 
 
166
 
167
+ ## Citation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
 
169
  **BibTeX:**
170
 
171
+ @misc{yu2020bdd100k,
172
+ title={BDD100K: A Diverse Driving Dataset for Heterogeneous Multitask Learning},
173
+ author={Fisher Yu and Haofeng Chen and Xin Wang and Wenqi Xian and Yingying Chen and Fangchen Liu and Vashisht Madhavan and Trevor Darrell},
174
+ year={2020},
175
+ eprint={1805.04687},
176
+ archivePrefix={arXiv},
177
+ primaryClass={cs.CV}
178
+ }