Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,29 +1,34 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
features:
|
4 |
-
- name: Filename
|
5 |
-
dtype: string
|
6 |
-
- name: Svg
|
7 |
-
dtype: string
|
8 |
-
splits:
|
9 |
-
- name: train
|
10 |
-
num_bytes: 7237915910
|
11 |
-
num_examples: 1229633
|
12 |
-
- name: val
|
13 |
-
num_bytes: 354265589
|
14 |
-
num_examples: 61507
|
15 |
-
- name: test
|
16 |
-
num_bytes: 17853613
|
17 |
-
num_examples: 3235
|
18 |
-
download_size: 3874676036
|
19 |
-
dataset_size: 7610035112
|
20 |
-
configs:
|
21 |
-
- config_name: default
|
22 |
-
data_files:
|
23 |
-
- split: train
|
24 |
-
path: data/train-*
|
25 |
-
- split: val
|
26 |
-
path: data/val-*
|
27 |
-
- split: test
|
28 |
-
path: data/test-*
|
29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
+
|
5 |
+
# Dataset Card for SVG-Stack (Simple)
|
6 |
+
|
7 |
+
## Dataset Description
|
8 |
+
|
9 |
+
This dataset contains SVG code examples for training and evaluating SVG models for image vectorization.
|
10 |
+
|
11 |
+
## Dataset Structure
|
12 |
+
|
13 |
+
### Data Instances
|
14 |
+
|
15 |
+
The dataset contains the following splits:
|
16 |
+
train, val, test
|
17 |
+
|
18 |
+
### Features
|
19 |
+
|
20 |
+
{'Filename': Value(dtype='string', id=None), 'Svg': Value(dtype='string', id=None)}
|
21 |
+
|
22 |
+
## Usage
|
23 |
+
|
24 |
+
```python
|
25 |
+
from datasets import load_dataset
|
26 |
+
|
27 |
+
dataset = load_dataset("starvector/svg-stack-simple")
|
28 |
+
```
|
29 |
+
|
30 |
+
## Tags
|
31 |
+
|
32 |
+
- svg
|
33 |
+
- code
|
34 |
+
|