Francesco commited on
Commit
ed15108
1 Parent(s): 300511c

Upload README.md with huggingface_hub

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