shravandoda commited on
Commit
4f432f5
·
verified ·
1 Parent(s): d6a94bb

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +62 -31
README.md CHANGED
@@ -1,33 +1,64 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: filename
5
- dtype: string
6
- - name: svg
7
- dtype: string
8
- - name: text
9
- dtype: string
10
- - name: dataset
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 532406428
15
- num_examples: 85170
16
- - name: test
17
- num_bytes: 65293971
18
- num_examples: 10599
19
- - name: val
20
- num_bytes: 66266242
21
- num_examples: 10755
22
- download_size: 224374372
23
- dataset_size: 663966641
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
- - split: test
30
- path: data/test-*
31
- - split: val
32
- path: data/val-*
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ - found
5
+ language:
6
+ - en
7
+ license: other
8
+ pretty_name: TobiaSVG
9
+ size_categories:
10
+ - 100K<n<1M
11
+ source_datasets:
12
+ - extended|QijiaHe/VFIG-Data
13
+ - extended|yoavf/svg-animal-illustrations
14
+ - extended|xingxm/SVGX-Core-250k
15
+ task_categories:
16
+ - text-generation
17
+ tags:
18
+ - svg
19
+ - vector-graphics
20
+ - text-to-svg
21
+ - image-to-svg
 
 
 
 
 
 
 
 
 
 
 
22
  ---
23
+
24
+ # TobiaSVG
25
+
26
+ TobiaSVG contains 106,524 text-SVG pairs for text-to-SVG generation and
27
+ image-to-SVG vectorization. Raster images are not stored; SVGs can be rendered
28
+ when examples are loaded.
29
+
30
+ ## Sources And Splits
31
+
32
+ | Subset | Source | Rows | License |
33
+ | --- | --- | ---: | --- |
34
+ | `vfig_diagrams` | [VFIG-Data](https://huggingface.co/datasets/QijiaHe/VFIG-Data) | 59,276 | ODC-BY 1.0 |
35
+ | `vfig_shapes` | [VFIG-Data](https://huggingface.co/datasets/QijiaHe/VFIG-Data) | 5,832 | ODC-BY 1.0 |
36
+ | `svgx_core` | [SVGX-Core-250k](https://huggingface.co/datasets/xingxm/SVGX-Core-250k) | 40,000 | CC BY-NC 4.0 |
37
+ | `animal_illustrations` | [SVG Animal Illustrations](https://huggingface.co/datasets/yoavf/svg-animal-illustrations) | 1,416 | CC0 1.0 |
38
+
39
+ Splits contain 85,170 training, 10,599 test, and 10,755 validation rows.
40
+ Identical clean SVGs are kept in the same split.
41
+
42
+ ## Fields
43
+
44
+ - `filename`: original filename.
45
+ - `svg`: clean SVG source.
46
+ - `text`: text description or prompt.
47
+ - `dataset`: source subset listed above.
48
+
49
+ ## Processing
50
+
51
+ SVGs were normalized, parsed, and rendered; invalid rows were removed. VFIG
52
+ rows additionally required at least 40% structural primitives and at most 50
53
+ complex shapes. Existing animal prompts and SVGX Qwen captions were retained.
54
+ VFIG captions were generated from rendered images with
55
+ `gemini-3.1-flash-lite`. Rows were sampled with seed 42 and split by clean SVG
56
+ identity to prevent target leakage.
57
+
58
+ ## License
59
+
60
+ This is a mixed-license dataset. The `dataset` field maps each row to the source
61
+ table above. SVGX rows are CC BY-NC 4.0, so the complete dataset is for
62
+ noncommercial use. Animal illustrations are CC0 1.0. VFIG is ODC-BY 1.0, which
63
+ licenses the database but may not cover rights in every individual item; review
64
+ the [ODC-BY terms](https://opendatacommons.org/licenses/by/1-0/) and source card.