RohitManglik commited on
Commit
1d140aa
·
verified ·
1 Parent(s): 269a225

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +231 -0
README.md CHANGED
@@ -1,3 +1,234 @@
1
  ---
 
 
 
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+
5
  license: cc-by-4.0
6
+
7
+ pretty_name: InfoBay.AI SVG Dataset Catalogue
8
+
9
+ size_categories:
10
+ - 100K<n<1M
11
+
12
+ tags:
13
+ - svg
14
+ - vector
15
+ - icons
16
+ - ui
17
+ - ux
18
+ - branding
19
+ - logos
20
+ - illustrations
21
+ - graphic-design
22
+ - computer-vision
23
+ - multimodal
24
+ - generative-ai
25
+ - frontend-ai
26
+ - enterprise-ai
27
+ - design-automation
28
  ---
29
+
30
+ # InfoBay.AI SVG Dataset Catalogue
31
+
32
+ ## Overview
33
+
34
+ The **InfoBay.AI SVG Dataset Catalogue** is a professionally curated collection of **873,754 scalable vector graphics (SVG)** designed for Artificial Intelligence, Computer Vision, UI/UX Design, Search Systems, Frontend Development, Design Automation, and Multimodal Foundation Models.
35
+
36
+ The dataset contains high-quality vector assets spanning user interface components, branding materials, logos, technology icons, healthcare graphics, business illustrations, communication symbols, and media-related visual elements.
37
+
38
+ For efficient storage, cloud-native distribution, and scalable AI workflows, the original SVG files have been serialized into **Apache Parquet** while preserving the original filenames, directory structure, file extensions, and binary content. Every original SVG asset can be reconstructed exactly from the provided Parquet files.
39
+
40
+ ---
41
+
42
+ # Dataset Statistics
43
+
44
+ | Property | Value |
45
+ |----------|------:|
46
+ | Dataset Name | InfoBay.AI SVG Dataset Catalogue |
47
+ | Asset Type | SVG (Scalable Vector Graphics) |
48
+ | Total Assets | 873,754 |
49
+ | Storage Format | Apache Parquet |
50
+ | License | CC BY 4.0 |
51
+
52
+ ---
53
+
54
+ # Dataset Categories
55
+
56
+ The collection includes vector graphics across multiple industries and applications.
57
+
58
+ ### Key Categories
59
+
60
+ - UI Controls
61
+ - Logos & Branding
62
+ - Technology & Devices
63
+ - Communication
64
+ - Business & Finance
65
+ - Health & Medical
66
+ - Media & Entertainment
67
+ - Icons
68
+ - Web Components
69
+ - Interface Elements
70
+ - Navigation Assets
71
+ - Product Illustrations
72
+ - Educational Graphics
73
+ - Marketing Assets
74
+
75
+ ---
76
+
77
+ # Primary AI Applications
78
+
79
+ This dataset is suitable for:
80
+
81
+ - Generative AI
82
+ - Computer Vision
83
+ - Vision Language Models (VLMs)
84
+ - Large Multimodal Models (LMMs)
85
+ - UI Component Recognition
86
+ - Frontend Code Generation
87
+ - Design Retrieval
88
+ - Image Similarity Search
89
+ - Search Indexing
90
+ - Vector Embedding Models
91
+ - OCR Research
92
+ - Design Recommendation
93
+ - Interface Understanding
94
+ - Human-Computer Interaction
95
+
96
+ ---
97
+
98
+ # Enterprise Applications
99
+
100
+ - UI / UX Design
101
+ - Frontend Development
102
+ - Graphic Design
103
+ - Brand Asset Management
104
+ - Enterprise Search
105
+ - Marketing Automation
106
+ - Product Design
107
+ - Design Systems
108
+ - Digital Asset Management
109
+ - AI-assisted Creative Platforms
110
+
111
+ ---
112
+
113
+ # Storage Format
114
+
115
+ The dataset is distributed in **Apache Parquet** format.
116
+
117
+ Each row represents one original SVG asset.
118
+
119
+ Schema:
120
+
121
+ | Column | Description |
122
+ |---------|-------------|
123
+ | relative_path | Original file path |
124
+ | filename | Original filename |
125
+ | extension | File extension |
126
+ | size | Original file size (bytes) |
127
+ | content | Binary SVG content |
128
+
129
+ The complete directory structure and SVG files can be restored programmatically from the Parquet dataset.
130
+
131
+ ---
132
+
133
+ # Why Apache Parquet?
134
+
135
+ Apache Parquet provides:
136
+
137
+ - Efficient compression
138
+ - Faster loading
139
+ - Reduced storage requirements
140
+ - Hugging Face compatibility
141
+ - Streaming support
142
+ - Cloud-native architecture
143
+ - Distributed processing
144
+ - Scalable AI pipelines
145
+
146
+ ---
147
+
148
+ # Loading the Dataset
149
+
150
+ ```python
151
+ from datasets import load_dataset
152
+
153
+ dataset = load_dataset("YOUR_USERNAME/YOUR_DATASET_NAME")
154
+
155
+ print(dataset)
156
+ ```
157
+
158
+ ---
159
+
160
+ # Example
161
+
162
+ ```python
163
+ sample = dataset["train"][0]
164
+
165
+ print(sample["filename"])
166
+ print(sample["extension"])
167
+ print(sample["size"])
168
+ print(sample["content"])
169
+ ```
170
+
171
+ ---
172
+
173
+ # AI Research Use Cases
174
+
175
+ Researchers can leverage this dataset for:
176
+
177
+ - UI Component Detection
178
+ - Logo Recognition
179
+ - Design Similarity Search
180
+ - Interface Understanding
181
+ - Frontend Generation
182
+ - Image Embedding Models
183
+ - Retrieval-Augmented Generation (RAG)
184
+ - Multimodal Representation Learning
185
+ - Human-Computer Interaction
186
+ - Design Recommendation Systems
187
+
188
+ ---
189
+
190
+ # Citation
191
+
192
+ ```bibtex
193
+ @dataset{infobay_svg_dataset_2026,
194
+ title = {InfoBay.AI SVG Dataset Catalogue},
195
+ author = {InfoBay.AI},
196
+ year = {2026},
197
+ publisher = {InfoBay.AI},
198
+ license = {CC BY 4.0}
199
+ }
200
+ ```
201
+
202
+ ---
203
+
204
+ # License
205
+
206
+ This dataset is released under the **Creative Commons Attribution 4.0 International (CC BY 4.0)** license.
207
+
208
+ You are free to:
209
+
210
+ - Share
211
+ - Copy
212
+ - Redistribute
213
+ - Remix
214
+ - Transform
215
+ - Build upon the material
216
+ - Use commercially
217
+
218
+ Provided that appropriate attribution is given to **InfoBay.AI**.
219
+
220
+ License:
221
+
222
+ https://creativecommons.org/licenses/by/4.0/
223
+
224
+ ---
225
+
226
+ # Disclaimer
227
+
228
+ This dataset is provided for research, educational, and enterprise AI development purposes. Users are responsible for ensuring compliance with all applicable copyright laws, intellectual property rights, and licensing requirements when using or redistributing the dataset.
229
+
230
+ ---
231
+
232
+ # Acknowledgements
233
+
234
+ The **InfoBay.AI SVG Dataset Catalogue** has been curated to accelerate research in Computer Vision, UI/UX Intelligence, Design Automation, Frontend AI, Multimodal Learning, Enterprise Search, and Generative AI. We hope this collection contributes to the development of next-generation intelligent design systems.