File size: 4,310 Bytes
71faa6a 75fb351 0cdb198 75fb351 0cdb198 75fb351 0cdb198 75fb351 0cdb198 75fb351 0cdb198 75fb351 0cdb198 75fb351 c24b6bb f6948f7 0e0383b 6fb482a 11d2cde 0e0383b 6fb482a 11d2cde 0e0383b 6fb482a 9eb8f99 0e0383b 6fb482a 45de837 15e35cd 45de837 9196c4d 45de837 9196c4d 45de837 9196c4d 71faa6a 75fb351 15e35cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
---
language:
- en
license: apache-2.0
tags:
- gaming
annotation_creators:
- crowdsourced
language_creators:
- crowdsourced
pretty_name: pale
size_categories:
- 10K<n<100K
task_categories:
- text-generation
- text-classification
- automatic-speech-recognition
configs:
- config_name: quotes
data_files:
- split: train
path: quotes/*.parquet
default: true
- config_name: vanilla
data_files:
- split: train
path: vanilla/*.parquet
default: false
- config_name: annotated
data_files:
- split: train
path: annotated/*.parquet
default: false
- config_name: pulled
data_files:
- split: train
path: pulled/*.parquet
default: false
dataset_info:
- config_name: pulled
features:
- name: header
dtype: string
- name: subheader
dtype: string
- name: text
dtype: string
- name: sound
dtype:
audio:
sampling_rate: 44100
- name: champion
dtype: string
splits:
- name: train
num_bytes: 4621864509.2
num_examples: 67575
download_size: 2557617774
dataset_size: 4621864509.2
- config_name: quotes
features:
- name: header
dtype: string
- name: subheader
dtype: string
- name: text
dtype: string
- name: champion
dtype: string
splits:
- name: train
num_bytes: 2499768
num_examples: 31001
download_size: 947409
dataset_size: 2499768
- config_name: vanilla
features:
- name: header
dtype: string
- name: subheader
dtype: string
- name: text
dtype: string
- name: source
dtype: string
- name: champion
dtype: string
splits:
- name: train
num_bytes: 14430202
num_examples: 67575
download_size: 2675223
dataset_size: 14430202
- config_name: annotated
features:
- name: header
dtype: string
- name: subheader
dtype: string
- name: text
dtype: string
- name: source
dtype: string
- name: champion
dtype: string
- name: quote
dtype: bool
splits:
- name: train
num_bytes: 14339149
num_examples: 67575
download_size: 2681173
dataset_size: 14339149
---
# Dataset card for pale
## Table of contents
- [Dataset description](#dataset-description)
- [Dataset summary](#dataset-summary)
- [Dataset structure](#dataset-structure)
- [Dataset instance](#dataset-instance)
- [Dataset fields](#dataset-fields)
## Dataset description
- **Homepage:** [pale homepage](https://huggingface.co/datasets/zeio/pale)
- **Repository:** [pale repository](https://huggingface.co/datasets/zeio/pale)
- **Point of contact:** [Zeio Nara](mailto:[email protected])
- **Dataset version:** `30.10.2023`
### Dataset summary
This dataset contains league of legends champions' quotes parsed from [fandom](https://leagueoflegends.fandom.com).
See dataset usage example [at google colab](https://cutt.ly/3wEKDUI9).
The dataset is available in the following configurations:
1. `vanilla` - all data pulled from the website without significant modifications apart from the web page structure parsing;
1. `quotes` - truncated version of the corpus, which does't contain sound effects;
1. `annotated` - an extended version of the full configuration with a couple of additional columns with labels;
1. `pulled` - same as vanilla, but sound files have been pulled from the website, and `source` column is replaced with `sound`.
## Dataset structure
### Data instance
An example of an entry from the dataset is given below:
```json
{
"header": "Attack",
"subheader": "Attacking",
"text": "Kindred: \"The masks of the Kindred seek you!\"",
"source": "https://static.wikia.nocookie.net/leagueoflegends/images/1/12/Kindred_Original_Passive_Mark_Enemy_6.ogg/revision/latest?cb=20221204121356",
"champion": "kindred"
}
```
### Data fields
Each dataset entry therefore consists of the following fields:
- `header` - main category of the text;
- `subheader` - secondary category of the text (none in some cases);
- `text` - text said by the champion or description of sound made by the champion;
- `source` - link to the audio file (only `vanilla` configuration);
- `champion` - name of the champion in lowercase;
- `quote` - binary field displaying whether corresponding text contains quote or not (only `annotated` configuration);
- `sound` - audio data for the entry (only `pulled` configuration).
|