zNequZ's picture
Update README.md
08554e6 verified
metadata
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

โš ๏ธ This dataset is based on public Riot API data and does not include any proprietary Riot content.