Datasets:
File size: 3,485 Bytes
738a10e 263c5c1 045f7b1 | 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 | ---
license: cc-by-nc-sa-4.0
task_categories:
- text-generation
- feature-extraction
language:
- en
tags:
- soulslike
- game
- rpg
- dark-fantasy
- lore
- rag
- knowledge-base
- nlp
- web-scraping
- elden-ring
- shadow-of-the-erdtree
- nightreign
- dark-souls
- bloodborne
- sekiro
- demons-souls
- fextralife
pretty_name: Soulslike Wiki Scrapping
size_categories:
- 10K<n<100K
---
# Soulslike Wiki Knowledge Base (RAG Corpus)
## Dataset Description
This dataset contains structured text scraped from public wikis (primarily Fextralife) covering major "Soulslike" games developed by FromSoftware. It is designed to serve as a **Knowledge Base for RAG (Retrieval-Augmented Generation)** systems, fine-tuning LLMs, or game analytics.
The current release is stored as a hierarchical JSON where:
```
{
"<Project/Game>": {
"<PageSlug>": {
"meta": {...},
"data": {...}
}
}
}
```
- **Curated content:** Irrelevant pages (calculators, login screens, forums) have been filtered out.
- **Format:** JSON snapshots uploaded under `FelipeRochaMartins/SoulsWikiScrapping` (compatible with Hugging Face `datasets`).
- **Games Covered:** Elden Ring (including Shadow of the Erdtree & Nightreign), Dark Souls Trilogy, Bloodborne, Sekiro, Demon's Souls.
## Dataset Structure
### Data Fields
Each page entry is stored beneath its parent project using two top-level keys:
- `meta`: Metadata about the page.
- `url`: Source URL.
- `project`: Game identifier (e.g., `Bloodborne`).
- `data`: Scraped content payload.
- `title`: Human-readable title (e.g., "1st Floor Sickroom | Bloodborne Wiki").
- `content`: Raw text extracted from the wiki body.
> **Note:** In the JSON snapshot the keys inside each project omit the `.json` suffix (e.g., `"1st_Floor_Sickroom"`). When importing back to `data/raw`, the loader automatically restores the `.json` extension.
### Example Instance
```
{
"Bloodborne": {
"1st_Floor_Sickroom": {
"meta": {
"url": "https://bloodborne.wiki.fextralife.com/1st+Floor+Sickroom",
"project": "Bloodborne"
},
"data": {
"title": "1st Floor Sickroom | Bloodborne Wiki",
"content": "1st Floor Sickroom is the tutorial area of Bloodborne..."
}
}
}
}
```
## Usage
### How to load in Python
```
from datasets import load_dataset
dataset = load_dataset("FelipeRochaMartins/SoulsWikiScrapping", data_files="latest.json")
payload = dataset["train"][0]
# Access a project + page pair
bloodborne = payload["Bloodborne"]
first_page = bloodborne["1st_Floor_Sickroom"]
print(first_page["data"]["title"])
```
## Source & Licensing
**Source:** The data was scraped from [Fextralife Wiki](https://wiki.fextralife.com/).
**License:** This dataset is distributed under the **CC BY-NC-SA 4.0** license (Creative Commons Attribution-NonCommercial-ShareAlike), consistent with the licensing terms of the source wikis.
- **Attribution:** All narrative content belongs to **FromSoftware** and the respective wiki contributors.
- **Non-Commercial:** This dataset should not be used for commercial purposes without permission from the copyright holders.
## Intended Use
- **RAG Systems:** Building a chatbot that answers questions about Elden Ring/Bloodborne/Dark Souls/Sekiro/Demon's Souls lore.
- **Lore Analysis:** Analyzing entity relationships (e.g., "Which NPCs are related to Miquella?").
- **Style Transfer:** Training models to write in the archaic/fantasy style of Hidetaka Miyazaki. |