Datasets:
license: openrail
language:
- de
League of Legends Basics Dataset ๐
๐ Description
This dataset contains automatically generated question-answer pairs based on official Riot API data from Data Dragon. It is designed to train AI models to answer fundamental League of Legends (LoL) questions regarding champion stats, abilities, roles, and counters.
๐น Data Generation Process
The dataset was created using a script that:
โ
Retrieves champion data from Riot Games' Data Dragon API
โ
Corrects champion names to avoid API errors (e.g., "Kai'Sa" โ "Kaisa")
โ
Expands synonyms for stat-related questions (e.g., "HP", "Health", "Max HP")
โ
Formats questions & answers consistently for better AI training
๐ Dataset Details
- Number of Entries: Automatically generated based on the latest patch
- Format: JSONL (
{"input": "<question>", "output": "<answer>"}) - Language: German ๐ฉ๐ช
- Sources: Official Riot API (Data Dragon)
๐ Example Questions
{"input": "Wie viel Lebenspunkte hat Aatrox?", "output": "Aatrox hat 650 Lebenspunkte auf Level 1."}
{"input": "Welche Rolle hat Jinx?", "output": "Jinx wird oft als Schรผtze gespielt."}
{"input": "Was ist Aatrox' passive Fรคhigkeit?", "output": "Blutdurst bewirkt: Aatrox heilt sich bei seinem nรคchsten Angriff."}
{"input": "Gegen welche Champions ist Yasuo stark?", "output": "Yasuo ist besonders effektiv gegen Champions mit wenig Mobilitรคt."}
{"input": "Welche Champions synergieren gut mit Thresh?", "output": "Thresh funktioniert gut mit ADCs, die von seinem Engage profitieren."}
๐ฅ Usage
This dataset is useful for NLP applications, such as:
โ
Fine-tuning language models to answer League of Legends questions
โ
Building a chatbot for League of Legends players
โ
Creating an FAQ system for beginner LoL players
Load the dataset using ๐ค datasets:
from datasets import load_dataset
dataset = load_dataset("zNequZ/Leauge_of_Legends_Basics")
print(dataset["train"][0])
๐ License & Credits
- License: MIT License
- Creator: zNequZ
- Data Sources: Riot Games API (Data Dragon)
โ ๏ธ This dataset is based on public Riot API data and does not include any proprietary Riot content.