Datasets:
File size: 1,341 Bytes
67dc5ee fc52f19 67dc5ee d9e9e87 67dc5ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
---
license: mit
task_categories:
- object-detection
tags:
- electrical
- circuits
size_categories:
- n<1K
dataset_info:
features:
- name: circuit_id
dtype: string
- name: image
dtype: binary
- name: components
list:
- name: bbox
struct:
- name: h
dtype: int64
- name: w
dtype: int64
- name: x
dtype: int64
- name: y
dtype: int64
- name: component_name
dtype: string
splits:
- name: train
num_bytes: 243941
num_examples: 13
download_size: 244783
dataset_size: 243941
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Phasor AC Circuits
This dataset contains several ac circuits defined using phasors as well as a description of the components in these circuits.
## Example Circuit
- circuits_raw/circuit_page_1_circuit_1.png

- components/circuit_page_1_circuit_1.yaml
```yaml
circuit_id: circuit_page_1_circuit_1
components:
- bbox:
h: 52
w: 52
x: 176
y: 25
component_name: capacitor
- bbox:
h: 59
w: 59
x: 258
y: 90
component_name: inductor
- bbox:
h: 52
w: 52
x: 94
y: 93
component_name: voltage source
``` |