Francesco commited on
Commit
a95f6f8
1 Parent(s): 55d09be

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +110 -14
README.md CHANGED
@@ -54,19 +54,115 @@ dataset_info:
54
  '29': Transformer
55
  '30': Transistor
56
  '31': Unknown Unlabeled
57
- splits:
58
- - name: train
59
- num_bytes: 65945456.0
60
- num_examples: 672
61
- - name: validation
62
- num_bytes: 1702446.0
63
- num_examples: 36
64
- - name: test
65
- num_bytes: 3585858.0
66
- num_examples: 64
67
- download_size: 65065302
68
- dataset_size: 71233760.0
 
 
 
 
 
 
 
 
69
  ---
70
- # Dataset Card for "circuit-elements"
71
 
72
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  '29': Transformer
55
  '30': Transistor
56
  '31': Unknown Unlabeled
57
+ annotations_creators:
58
+ - crowdsourced
59
+ language_creators:
60
+ - found
61
+ language:
62
+ - en
63
+ license:
64
+ - cc
65
+ multilinguality:
66
+ - monolingual
67
+ size_categories:
68
+ - 1K<n<10K
69
+ source_datasets:
70
+ - original
71
+ task_categories:
72
+ - object-detection
73
+ task_ids: []
74
+ pretty_name: circuit-elements
75
+ tags:
76
+ - rf100
77
  ---
 
78
 
79
+ # Dataset Card for circuit-elements
80
+
81
+ ** The original COCO dataset is stored at `dataset.tar.gz`**
82
+
83
+ ## Dataset Description
84
+
85
+ - **Homepage:** https://universe.roboflow.com/object-detection/circuit-elements
86
+ - **Point of Contact:** francesco.zuppichini@gmail.com
87
+
88
+ ### Dataset Summary
89
+
90
+ circuit-elements
91
+
92
+ ### Supported Tasks and Leaderboards
93
+
94
+ - `object-detection`: The dataset can be used to train a model for Object Detection.
95
+
96
+ ### Languages
97
+
98
+ English
99
+
100
+ ## Dataset Structure
101
+
102
+ ### Data Instances
103
+
104
+ A data point comprises an image and its object annotations.
105
+
106
+ ```
107
+ {
108
+ 'image_id': 15,
109
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
110
+ 'width': 964043,
111
+ 'height': 640,
112
+ 'objects': {
113
+ 'id': [114, 115, 116, 117],
114
+ 'area': [3796, 1596, 152768, 81002],
115
+ 'bbox': [
116
+ [302.0, 109.0, 73.0, 52.0],
117
+ [810.0, 100.0, 57.0, 28.0],
118
+ [160.0, 31.0, 248.0, 616.0],
119
+ [741.0, 68.0, 202.0, 401.0]
120
+ ],
121
+ 'category': [4, 4, 0, 0]
122
+ }
123
+ }
124
+ ```
125
+
126
+ ### Data Fields
127
+
128
+ - `image`: the image id
129
+ - `image`: `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
130
+ - `width`: the image width
131
+ - `height`: the image height
132
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
133
+ - `id`: the annotation id
134
+ - `area`: the area of the bounding box
135
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
136
+ - `category`: the object's category.
137
+
138
+
139
+ #### Who are the annotators?
140
+
141
+ Annotators are Roboflow users
142
+
143
+ ## Additional Information
144
+
145
+ ### Licensing Information
146
+
147
+ See original homepage https://universe.roboflow.com/object-detection/circuit-elements
148
+
149
+ ### Citation Information
150
+
151
+ ```
152
+ @misc{ circuit-elements,
153
+ title = { circuit elements Dataset },
154
+ type = { Open Source Dataset },
155
+ author = { Roboflow 100 },
156
+ howpublished = { \url{ https://universe.roboflow.com/object-detection/circuit-elements } },
157
+ url = { https://universe.roboflow.com/object-detection/circuit-elements },
158
+ journal = { Roboflow Universe },
159
+ publisher = { Roboflow },
160
+ year = { 2022 },
161
+ month = { nov },
162
+ note = { visited on 2023-03-29 },
163
+ }"
164
+ ```
165
+
166
+ ### Contributions
167
+
168
+ Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.