gremlin97 commited on
Commit
e1e3872
·
verified ·
1 Parent(s): eaf40f2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +52 -82
README.md CHANGED
@@ -1,84 +1,54 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: width
7
- dtype: int64
8
- - name: height
9
- dtype: int64
10
- - name: yolo_annotation
11
- struct:
12
- - name: bbox
13
- sequence:
14
- sequence: float32
15
- - name: category
16
- sequence: string
17
- - name: coco_annotation
18
- struct:
19
- - name: image_id
20
- dtype: int64
21
- - name: annotations
22
- sequence:
23
- - name: id
24
- dtype: int64
25
- - name: image_id
26
- dtype: int64
27
- - name: category_id
28
- dtype: int64
29
- - name: bbox
30
- sequence: float32
31
- - name: area
32
- dtype: float32
33
- - name: iscrowd
34
- dtype: int64
35
- - name: pascal_voc_annotation
36
- struct:
37
- - name: filename
38
- dtype: string
39
- - name: size
40
- struct:
41
- - name: width
42
- dtype: int64
43
- - name: height
44
- dtype: int64
45
- - name: depth
46
- dtype: int64
47
- - name: objects
48
- sequence:
49
- - name: name
50
- dtype: string
51
- - name: difficult
52
- dtype: int64
53
- - name: bbox
54
- struct:
55
- - name: xmin
56
- dtype: int64
57
- - name: ymin
58
- dtype: int64
59
- - name: xmax
60
- dtype: int64
61
- - name: ymax
62
- dtype: int64
63
- splits:
64
- - name: train
65
- num_bytes: 528773942.84
66
- num_examples: 1404
67
- - name: val
68
- num_bytes: 75457366.0
69
- num_examples: 201
70
- - name: test
71
- num_bytes: 151610973.0
72
- num_examples: 402
73
- download_size: 755721010
74
- dataset_size: 755842281.8399999
75
- configs:
76
- - config_name: default
77
- data_files:
78
- - split: train
79
- path: data/train-*
80
- - split: val
81
- path: data/val-*
82
- - split: test
83
- path: data/test-*
84
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - object-detection
18
+ - planetary-science
19
+ task_ids:
20
+ - object-detection
21
+ pretty_name: dust-devil-detection
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ---
23
+
24
+ # dust-devil-detection Dataset
25
+
26
+ An object detection dataset in YOLO format containing 3 splits: train, val, test.
27
+
28
+ ## Dataset Metadata
29
+
30
+ * **License:** CC-BY-4.0 (Creative Commons Attribution 4.0 International)
31
+ * **Version:** 1.0
32
+ * **Date Published:** 2025-05-09
33
+ * **Cite As:** TBD
34
+
35
+ ## Dataset Details
36
+
37
+ - Format: YOLO
38
+ - Splits: train, val, test
39
+
40
+ - Classes: dust_devil
41
+
42
+ ## Additional Formats
43
+
44
+ - Includes COCO format annotations
45
+ - Includes Pascal VOC format annotations
46
+
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ dataset = load_dataset("gremlin97/dust-devil-detection")
54
+ ```