bshada commited on
Commit
8b8963d
·
verified ·
1 Parent(s): 9dd947a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +114 -29
README.md CHANGED
@@ -1,31 +1,116 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: data/train-*
7
- dataset_info:
8
- features:
9
- - name: schematic
10
- dtype: string
11
- - name: image
12
- dtype: image
13
- - name: components_used
14
- list: string
15
- - name: json
16
- dtype: string
17
- - name: yaml
18
- dtype: string
19
- - name: name
20
- dtype: string
21
- - name: description
22
- dtype: string
23
- - name: type
24
- dtype: string
25
- splits:
26
- - name: train
27
- num_bytes: 15420182098
28
- num_examples: 84470
29
- download_size: 6666345413
30
- dataset_size: 15420182098
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-generation
5
+ - image-to-text
6
+ - text-to-image
7
+ language:
8
+ - en
9
+ tags:
10
+ - electronics
11
+ - schematics
12
+ - kicad
13
+ - hardware
14
+ - pcb
15
+ - circuit-design
16
+ - engineering
17
+ size_categories:
18
+ - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
19
  ---
20
+
21
+ ![Open Schematics](open-schematics.png)
22
+
23
+ # Open Schematics Dataset
24
+
25
+ A comprehensive dataset of electronic schematics from hardware projects. This dataset is designed for training AI models on circuit design, component recognition, and hardware engineering tasks.
26
+
27
+ ## Dataset Description
28
+
29
+ This dataset contains electronic schematic files along with their visual representations, component information, and metadata from various hardware projects.
30
+
31
+ ### Dataset Structure
32
+
33
+ Each record in the dataset contains:
34
+
35
+ - **schematic**: Raw schematic file content (primarily `.kicad_sch` format)
36
+ - **image**: PNG rendering of the schematic
37
+ - **components_used**: List of electronic components used in the schematic
38
+ - **json**: JSON representation of the schematic structure
39
+ - **yaml**: YAML representation of the schematic metadata
40
+ - **name**: Project name
41
+ - **description**: Project description
42
+ - **type**: File extension/format (e.g., `.kicad_sch`)
43
+
44
+ ### Data Fields
45
+
46
+ | Field | Type | Description |
47
+ |-------|------|-------------|
48
+ | `schematic` | string | Raw schematic file content |
49
+ | `image` | image | Visual rendering of the schematic (PNG) |
50
+ | `components_used` | list[string] | Electronic components used in the design |
51
+ | `json` | string | JSON representation of schematic structure |
52
+ | `yaml` | string | YAML metadata of the schematic |
53
+ | `name` | string | Name of the project |
54
+ | `description` | string | Description of the project |
55
+ | `type` | string | Schematic file format/extension |
56
+
57
+ ## Dataset Creation
58
+
59
+ ### Source Data
60
+
61
+ The dataset is compiled from hardware projects, with schematics created using EDA software.
62
+
63
+ ### Data Collection
64
+
65
+ Schematics were collected from publicly available hardware repositories and processed to extract:
66
+ - Raw schematic files
67
+ - Visual representations (PNG images)
68
+ - Component lists
69
+ - Structured metadata (JSON/YAML)
70
+
71
+ ### Data Processing
72
+
73
+ - Empty schematics (without components or symbols) are filtered out
74
+ - Component names are extracted from library symbols
75
+ - Images are generated for visual representation
76
+ - Multiple format representations (raw, JSON, YAML) are provided for flexibility
77
+
78
+ ## Use Cases
79
+
80
+ This dataset can be used for:
81
+
82
+ - **Circuit Design AI**: Training models to generate or understand electronic schematics
83
+ - **Component Recognition**: Identifying electronic components from schematic diagrams
84
+ - **Design Assistance**: Building tools to help engineers with circuit design
85
+ - **Documentation Generation**: Automatically generating documentation from schematics
86
+ - **Design Validation**: Training models to detect errors or suggest improvements
87
+ - **Educational Tools**: Creating interactive learning systems for electronics education
88
+
89
+ ## Limitations
90
+
91
+ - Dataset primarily contains `.kicad_sch` format schematics
92
+ - Quality and complexity of schematics vary across projects
93
+ - Some projects may have incomplete metadata
94
+ - Component naming conventions may vary between projects
95
+
96
+ ## License
97
+
98
+ This dataset is released under the Creative Commons Attribution 4.0 International (CC-BY-4.0) license. Please ensure you comply with the original licenses of the source projects when using this data.
99
+
100
+ ## Citation
101
+
102
+ If you use this dataset in your research or projects, please cite:
103
+
104
+ ```bibtex
105
+ @dataset{open_schematics_2025,
106
+ title={Open Schematics: A Dataset of Electronic Schematics from Hardware Projects},
107
+ author={bshada},
108
+ year={2025},
109
+ publisher={Hugging Face},
110
+ howpublished={\url{https://huggingface.co/datasets/bshada/open-schematics}}
111
+ }
112
+ ```
113
+
114
+ ## Contact
115
+
116
+ For questions, issues, or contributions, please open an issue on the dataset repository.