RohitManglik commited on
Commit
f1fa18c
·
verified ·
1 Parent(s): 455b574

Update README.md

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