Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
joanrodai commited on
Commit
b1b6562
·
verified ·
1 Parent(s): 330a608

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -6
README.md CHANGED
@@ -2,6 +2,16 @@
2
  {}
3
  ---
4
 
 
 
 
 
 
 
 
 
 
 
5
  # Dataset Card for SVG-Stack (Simple)
6
 
7
  ## Dataset Description
@@ -10,14 +20,15 @@ This dataset contains SVG code examples for training and evaluating SVG models f
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
 
@@ -27,7 +38,24 @@ from datasets import load_dataset
27
  dataset = load_dataset("starvector/svg-stack-simple")
28
  ```
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  ## Tags
31
 
32
- - svg
 
 
33
  - code
 
2
  {}
3
  ---
4
 
5
+ <a href="" target="_blank">
6
+ <img alt="arXiv" src="https://img.shields.io/badge/arXiv-StarVector-red?logo=arxiv" height="20" />
7
+ </a>
8
+ <a href="https://starvector.github.io/" target="_blank">
9
+ <img alt="Website" src="https://starvector.github.io/" height="20" />
10
+ </a>
11
+ <a href="https://github.com/joanrod/star-vector" target="_blank" style="display: inline-block; margin-right: 10px;">
12
+ <img alt="GitHub Code" src="https://img.shields.io/badge/Code-StarVector-white?&logo=github&logoColor=white" />
13
+ </a>
14
+
15
  # Dataset Card for SVG-Stack (Simple)
16
 
17
  ## Dataset Description
 
20
 
21
  ## Dataset Structure
22
 
 
 
 
 
23
 
24
  ### Features
25
 
26
+ The dataset contains the following fields:
27
+
28
+ | Field Name | Description |
29
+ | :--------- | :---------- |
30
+ | `Filename` | Unique ID for each SVG |
31
+ | `Svg` | SVG code |
32
 
33
  ## Usage
34
 
 
38
  dataset = load_dataset("starvector/svg-stack-simple")
39
  ```
40
 
41
+ ## Benchmark Evaluation
42
+
43
+ To evaluate your model on this dataset, please refer to the [README.md](https://github.com/starvector/star-vector/blob/main/README.md) file in the [StarVector GitHub repository](https://github.com/starvector/star-vector).
44
+
45
+ ## Citation
46
+
47
+ ```bibtex
48
+ @article{rodriguez2023starvector,
49
+ title={{StarVector: Generating Scalable Vector Graphics Code from Images and Text}},
50
+ author={Juan A. Rodriguez and Abhay Puri and Shubham Agarwal and Issam H. Laradji and Pau Rodriguez and Sai Rajeswar and David Vazquez and Christopher Pal and Marco Pedersoli},
51
+ year={2023},
52
+ journal={arXiv preprint arXiv:2312.11556},
53
+ }
54
+ ```
55
+
56
  ## Tags
57
 
58
+ - scalable vector graphics (SVG)
59
+ - vision language models
60
+ - multimodal
61
  - code