gremlin97 commited on
Commit
9ca9e63
·
verified ·
1 Parent(s): 8da13a5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -82
README.md CHANGED
@@ -1,84 +1,53 @@
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: 305105374.7
66
- num_examples: 1158
67
- - name: val
68
- num_bytes: 44002984.0
69
- num_examples: 167
70
- - name: test
71
- num_bytes: 87741564.0
72
- num_examples: 333
73
- download_size: 366467236
74
- dataset_size: 436849922.7
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
+ task_ids:
19
+ - instance-segmentation
20
+ pretty_name: conequest_detection
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # conequest_detection Dataset
24
+
25
+ An object detection dataset in YOLO format containing 3 splits: train, val, test.
26
+
27
+ ## Dataset Metadata
28
+
29
+ * **License:** CC-BY-4.0 (Creative Commons Attribution 4.0 International)
30
+ * **Version:** 1.0
31
+ * **Date Published:** 2025-05-11
32
+ * **Cite As:** TBD
33
+
34
+ ## Dataset Details
35
+
36
+ - Format: YOLO
37
+ - Splits: train, val, test
38
+
39
+ - Classes: cone
40
+
41
+ ## Additional Formats
42
+
43
+ - Includes COCO format annotations
44
+ - Includes Pascal VOC format annotations
45
+
46
+
47
+ ## Usage
48
+
49
+ ```python
50
+ from datasets import load_dataset
51
+
52
+ dataset = load_dataset("gremlin97/conequest_detection")
53
+ ```