Outline the dataset structure
Browse files
README.md
CHANGED
@@ -1,3 +1,59 @@
|
|
1 |
---
|
2 |
license: agpl-3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: agpl-3.0
|
3 |
+
configs:
|
4 |
+
- config_name: asciiart
|
5 |
+
data_files:
|
6 |
+
- split: train
|
7 |
+
path: "asciiart/train/*.parquet"
|
8 |
+
- config_name: copypasta
|
9 |
+
default: true
|
10 |
+
data_files:
|
11 |
+
- split: train
|
12 |
+
path: "copypasta/train/*.parquet"
|
13 |
+
- config_name: graffiti
|
14 |
+
default: true
|
15 |
+
data_files:
|
16 |
+
- split: train
|
17 |
+
path: "graffiti/train/*.parquet"
|
18 |
+
- config_name: images
|
19 |
+
default: true
|
20 |
+
data_files:
|
21 |
+
- split: train
|
22 |
+
path: "images/train/*.parquet"
|
23 |
---
|
24 |
+
|
25 |
+
# ASCII Art
|
26 |
+
|
27 |
+
## Description
|
28 |
+
|
29 |
+
Collection of ASCII art from various sources:
|
30 |
+
|
31 |
+
- `asciiart`: made by independent artists, listed on [asciiart.eu][source-asciiart]
|
32 |
+
- `copypasta`: common twitch emotes, listed on [twitchquotes.com][source-twitchquotes]
|
33 |
+
- `graffiti`: text samples styled using various ASCII art fonts (soon)
|
34 |
+
- `images`: image conversion using tools, on text-to-image datasets (soon)
|
35 |
+
|
36 |
+
## Metadata
|
37 |
+
|
38 |
+
- homepage: [https://github.com/apehex/scrapscii][github-scrapscii]
|
39 |
+
- version: 0.2.0
|
40 |
+
|
41 |
+
| Config | Split | Size | Samples |
|
42 |
+
| ----------------- | --------- | --------- | --------- |
|
43 |
+
| 'asciiart' | 'train' | 1.8 MB | 5293 |
|
44 |
+
| 'copypasta' | 'train' | 488 KB | 909 |
|
45 |
+
|
46 |
+
## Features
|
47 |
+
|
48 |
+
```python
|
49 |
+
datasets.Features({
|
50 |
+
'caption': datasets.features.Value(dtype='uint64'),
|
51 |
+
'content': datasets.features.Value(dtype='uint64'),
|
52 |
+
'labels': datasets.features.Value(dtype='large_binary'),
|
53 |
+
'charsets': datasets.features.Value(dtype='large_binary'),
|
54 |
+
'chartypes': datasets.features.Value(dtype='large_binary'),})
|
55 |
+
```
|
56 |
+
|
57 |
+
[github-scrapscii]: https://github.com/apehex/scrapscii/
|
58 |
+
[source-asciiart]: https://www.asciiart.eu/
|
59 |
+
[source-twitchquotes]: https://www.twitchquotes.com/
|