Update README.md
Browse files
README.md
CHANGED
@@ -10,13 +10,33 @@ dataset_info:
|
|
10 |
dtype: string
|
11 |
splits:
|
12 |
- name: train
|
13 |
-
num_bytes: 85251273
|
14 |
num_examples: 549
|
15 |
download_size: 85034553
|
16 |
-
dataset_size: 85251273
|
17 |
configs:
|
18 |
- config_name: default
|
19 |
data_files:
|
20 |
- split: train
|
21 |
path: data/train-*
|
|
|
|
|
|
|
22 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
dtype: string
|
11 |
splits:
|
12 |
- name: train
|
13 |
+
num_bytes: 85251273
|
14 |
num_examples: 549
|
15 |
download_size: 85034553
|
16 |
+
dataset_size: 85251273
|
17 |
configs:
|
18 |
- config_name: default
|
19 |
data_files:
|
20 |
- split: train
|
21 |
path: data/train-*
|
22 |
+
pretty_name: SketchFig
|
23 |
+
size_categories:
|
24 |
+
- n<1K
|
25 |
---
|
26 |
+
|
27 |
+
# Dataset Card for SketchFig
|
28 |
+
SketchFig is a dataset of scientific images with paired human-created
|
29 |
+
sketches collected on the [T<sub>E</sub>X Stack
|
30 |
+
Exchange](https://tex.stackexchange.com) platform. Visit the
|
31 |
+
[DeTi*k*Zify](https://github.com/potamides/DeTikZify) project for more
|
32 |
+
information.
|
33 |
+
|
34 |
+
## Usage
|
35 |
+
```python
|
36 |
+
from datasets import load_dataset
|
37 |
+
|
38 |
+
ds = load_dataset("nllg/sketchfig", split="train")
|
39 |
+
for sample in ds:
|
40 |
+
sample['image'].show()
|
41 |
+
sample['sketch'].show()
|
42 |
+
```
|