pale
Collection
League of Legends champions' sounds
•
2 items
•
Updated
The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider
removing the
loading script
and relying on
automated data support
(you can use
convert_to_parquet
from the datasets
library). If this is not possible, please
open a discussion
for direct help.
This dataset contains league of legends champions' quotes parsed from fandom. See dataset viewer at the derivative repo. See dataset usage example at google colab. The dataset is available in the following configurations:
vanilla
- all data pulled from the website without significant modifications apart from the web page structure parsing;quotes
- truncated version of the corpus, which does't contain sound effects;annotated
- an extended version of the full configuration with a couple of additional columns with labels;pulled
- same as vanilla, but sound files have been pulled from the website, and source
column is replaced with sound
.An example of an entry from the dataset is given below:
{
"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"
}
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).