metadata
license: agpl-3.0
configs:
- config_name: asciiart
default: true
data_files:
- split: train
path: asciiart/train/*.parquet
- config_name: copypasta
default: false
data_files:
- split: train
path: copypasta/train/*.parquet
- config_name: graffiti
default: false
data_files:
- split: train
path: graffiti/train/*.parquet
- config_name: images
default: false
data_files:
- split: train
path: images/train/*.parquet
ASCII Art
Description
Collection of ASCII art from various sources:
asciiart
: made by independent artists, listed on asciiart.eucopypasta
: common twitch emotes, listed on twitchquotes.comgraffiti
: text samples styled using various ASCII art fonts with a toolimages
: conversion of a portion of the dataset DataCompDR-12M using a tool
Metadata
- homepage: https://github.com/apehex/scrapscii
- version: 1.0.0
Config | Split | Size | Samples |
---|---|---|---|
'asciiart' | 'train' | 1.8 MB | 5293 |
'copypasta' | 'train' | 488 KB | 909 |
'graffiti' | 'train' | 25 MB | 21504 |
'images' | 'train' | 22 MB | 11264 |
Features
All the features of the dataset are textual:
datasets.Features({
'caption': datasets.features.Value(dtype='string'),
'content': datasets.features.Value(dtype='string'),
'labels': datasets.features.Value(dtype='string'),
'charsets': datasets.features.Value(dtype='string'),
'chartypes': datasets.features.Value(dtype='string'),})
caption
:- a brief description of the "image"
- for example
"Undertale Sans full body"
- can be empty
content
:- the actual ASCII art, in UTF-8 encoding
- for example
"(╯°□°)╯︵ ┻━┻ FLIP THAT TABLE.\r\n┻━┻ ︵ ヽ(°□°ヽ) FLIP THIS TABLE."
- is never empty
labels
:- a list of tags, separated by commas
- the set of tags depends on the dataset
- for example
"Cartoons,Smurfs"
- can be empty
charsets
:- the Unicode sections of the characters in the AA
- for example
"Braille Patterns,ASCII C0"
- "C0 Controls and Basic Latin" is renamed "ASCII C0"
- "C1 Controls and Latin-1 Supplement" is renamed "ASCII C1"
- is never empty
chartypes
:- the types of characters in the AA
- for example
"Punctuations,Others,Symbols,Letters"
- is never empty