File size: 5,371 Bytes
4566917
f1fa18c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e4a543b
 
 
 
 
 
 
 
 
 
 
 
 
 
4566917
f1fa18c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
---
language:
- en

license: cc-by-4.0

pretty_name: InfoBay.AI SVG Dataset Catalogue

size_categories:
- 100K<n<1M

tags:
- svg
- vector
- icons
- ui
- ux
- branding
- logos
- illustrations
- graphic-design
- computer-vision
- multimodal
- generative-ai
- frontend-ai
- enterprise-ai
- design-automation
dataset_info:
  features:
    - name: image
      dtype: image
    - name: filename
      dtype: string
    - name: svg
      dtype: string

configs:
  - config_name: default
    data_files:
      - split: train
        path: "train-*.parquet"
---

# InfoBay.AI SVG Dataset Catalogue

## Overview

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.

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.

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.

---

# Dataset Statistics

| Property | Value |
|----------|------:|
| Dataset Name | InfoBay.AI SVG Dataset Catalogue |
| Asset Type | SVG (Scalable Vector Graphics) |
| Total Assets | 873,754 |
| Storage Format | Apache Parquet |
| License | CC BY 4.0 |

---

# Dataset Categories

The collection includes vector graphics across multiple industries and applications.

### Key Categories

- UI Controls
- Logos & Branding
- Technology & Devices
- Communication
- Business & Finance
- Health & Medical
- Media & Entertainment
- Icons
- Web Components
- Interface Elements
- Navigation Assets
- Product Illustrations
- Educational Graphics
- Marketing Assets

---

# Primary AI Applications

This dataset is suitable for:

- Generative AI
- Computer Vision
- Vision Language Models (VLMs)
- Large Multimodal Models (LMMs)
- UI Component Recognition
- Frontend Code Generation
- Design Retrieval
- Image Similarity Search
- Search Indexing
- Vector Embedding Models
- OCR Research
- Design Recommendation
- Interface Understanding
- Human-Computer Interaction

---

# Enterprise Applications

- UI / UX Design
- Frontend Development
- Graphic Design
- Brand Asset Management
- Enterprise Search
- Marketing Automation
- Product Design
- Design Systems
- Digital Asset Management
- AI-assisted Creative Platforms

---

# Storage Format

The dataset is distributed in **Apache Parquet** format.

Each row represents one original SVG asset.

Schema:

| Column | Description |
|---------|-------------|
| relative_path | Original file path |
| filename | Original filename |
| extension | File extension |
| size | Original file size (bytes) |
| content | Binary SVG content |

The complete directory structure and SVG files can be restored programmatically from the Parquet dataset.

---

# Why Apache Parquet?

Apache Parquet provides:

- Efficient compression
- Faster loading
- Reduced storage requirements
- Hugging Face compatibility
- Streaming support
- Cloud-native architecture
- Distributed processing
- Scalable AI pipelines

---

# Loading the Dataset

```python
from datasets import load_dataset

dataset = load_dataset("YOUR_USERNAME/YOUR_DATASET_NAME")

print(dataset)
```

---

# Example

```python
sample = dataset["train"][0]

print(sample["filename"])
print(sample["extension"])
print(sample["size"])
print(sample["content"])
```

---

# AI Research Use Cases

Researchers can leverage this dataset for:

- UI Component Detection
- Logo Recognition
- Design Similarity Search
- Interface Understanding
- Frontend Generation
- Image Embedding Models
- Retrieval-Augmented Generation (RAG)
- Multimodal Representation Learning
- Human-Computer Interaction
- Design Recommendation Systems

---

# Citation

```bibtex
@dataset{infobay_svg_dataset_2026,
  title     = {InfoBay.AI SVG Dataset Catalogue},
  author    = {InfoBay.AI},
  year      = {2026},
  publisher = {InfoBay.AI},
  license   = {CC BY 4.0}
}
```

---

# License

This dataset is released under the **Creative Commons Attribution 4.0 International (CC BY 4.0)** license.

You are free to:

- Share
- Copy
- Redistribute
- Remix
- Transform
- Build upon the material
- Use commercially

Provided that appropriate attribution is given to **InfoBay.AI**.

License:

https://creativecommons.org/licenses/by/4.0/

---

# Disclaimer

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.

---

# Acknowledgements

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.