Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -29,19 +29,115 @@ dataset_info:
|
|
29 |
'4': R
|
30 |
'5': VDC
|
31 |
'6': VDC_I
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
---
|
45 |
-
# Dataset Card for "circuit-voltages"
|
46 |
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
'4': R
|
30 |
'5': VDC
|
31 |
'6': VDC_I
|
32 |
+
annotations_creators:
|
33 |
+
- crowdsourced
|
34 |
+
language_creators:
|
35 |
+
- found
|
36 |
+
language:
|
37 |
+
- en
|
38 |
+
license:
|
39 |
+
- cc
|
40 |
+
multilinguality:
|
41 |
+
- monolingual
|
42 |
+
size_categories:
|
43 |
+
- 1K<n<10K
|
44 |
+
source_datasets:
|
45 |
+
- original
|
46 |
+
task_categories:
|
47 |
+
- object-detection
|
48 |
+
task_ids: []
|
49 |
+
pretty_name: circuit-voltages
|
50 |
+
tags:
|
51 |
+
- rf100
|
52 |
---
|
|
|
53 |
|
54 |
+
# Dataset Card for circuit-voltages
|
55 |
+
|
56 |
+
** The original COCO dataset is stored at `dataset.tar.gz`**
|
57 |
+
|
58 |
+
## Dataset Description
|
59 |
+
|
60 |
+
- **Homepage:** https://universe.roboflow.com/object-detection/circuit-voltages
|
61 |
+
- **Point of Contact:** francesco.zuppichini@gmail.com
|
62 |
+
|
63 |
+
### Dataset Summary
|
64 |
+
|
65 |
+
circuit-voltages
|
66 |
+
|
67 |
+
### Supported Tasks and Leaderboards
|
68 |
+
|
69 |
+
- `object-detection`: The dataset can be used to train a model for Object Detection.
|
70 |
+
|
71 |
+
### Languages
|
72 |
+
|
73 |
+
English
|
74 |
+
|
75 |
+
## Dataset Structure
|
76 |
+
|
77 |
+
### Data Instances
|
78 |
+
|
79 |
+
A data point comprises an image and its object annotations.
|
80 |
+
|
81 |
+
```
|
82 |
+
{
|
83 |
+
'image_id': 15,
|
84 |
+
'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
|
85 |
+
'width': 964043,
|
86 |
+
'height': 640,
|
87 |
+
'objects': {
|
88 |
+
'id': [114, 115, 116, 117],
|
89 |
+
'area': [3796, 1596, 152768, 81002],
|
90 |
+
'bbox': [
|
91 |
+
[302.0, 109.0, 73.0, 52.0],
|
92 |
+
[810.0, 100.0, 57.0, 28.0],
|
93 |
+
[160.0, 31.0, 248.0, 616.0],
|
94 |
+
[741.0, 68.0, 202.0, 401.0]
|
95 |
+
],
|
96 |
+
'category': [4, 4, 0, 0]
|
97 |
+
}
|
98 |
+
}
|
99 |
+
```
|
100 |
+
|
101 |
+
### Data Fields
|
102 |
+
|
103 |
+
- `image`: the image id
|
104 |
+
- `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]`
|
105 |
+
- `width`: the image width
|
106 |
+
- `height`: the image height
|
107 |
+
- `objects`: a dictionary containing bounding box metadata for the objects present on the image
|
108 |
+
- `id`: the annotation id
|
109 |
+
- `area`: the area of the bounding box
|
110 |
+
- `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
|
111 |
+
- `category`: the object's category.
|
112 |
+
|
113 |
+
|
114 |
+
#### Who are the annotators?
|
115 |
+
|
116 |
+
Annotators are Roboflow users
|
117 |
+
|
118 |
+
## Additional Information
|
119 |
+
|
120 |
+
### Licensing Information
|
121 |
+
|
122 |
+
See original homepage https://universe.roboflow.com/object-detection/circuit-voltages
|
123 |
+
|
124 |
+
### Citation Information
|
125 |
+
|
126 |
+
```
|
127 |
+
@misc{ circuit-voltages,
|
128 |
+
title = { circuit voltages Dataset },
|
129 |
+
type = { Open Source Dataset },
|
130 |
+
author = { Roboflow 100 },
|
131 |
+
howpublished = { \url{ https://universe.roboflow.com/object-detection/circuit-voltages } },
|
132 |
+
url = { https://universe.roboflow.com/object-detection/circuit-voltages },
|
133 |
+
journal = { Roboflow Universe },
|
134 |
+
publisher = { Roboflow },
|
135 |
+
year = { 2022 },
|
136 |
+
month = { nov },
|
137 |
+
note = { visited on 2023-03-29 },
|
138 |
+
}"
|
139 |
+
```
|
140 |
+
|
141 |
+
### Contributions
|
142 |
+
|
143 |
+
Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.
|