RoyalCities commited on
Commit
73a898c
Β·
verified Β·
1 Parent(s): e3b88f4

Upload 2 files

Browse files
Files changed (2) hide show
  1. LICENSE.md +20 -0
  2. README.md +84 -0
LICENSE.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # πŸ“„ License
2
+
3
+ **Creative Commons Attribution-ShareAlike 2.5 Unported (CC BY-SA 2.5)**
4
+
5
+ This dataset includes content originally created by the Unofficial Elder Scrolls Pages (UESP) and made available under the Creative Commons Attribution-ShareAlike 2.5 license.
6
+
7
+ You are free to:
8
+
9
+ - **Share**: copy and redistribute the material in any medium or format
10
+ - **Adapt**: remix, transform, and build upon the material for any purpose
11
+
12
+ Under the following terms:
13
+
14
+ - **Attribution**: You must give appropriate credit to the original source (UESP), provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests UESP endorses you or your use.
15
+ - **ShareAlike**: If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
16
+
17
+ πŸ”— **Full license text**: [https://creativecommons.org/licenses/by-sa/2.5/](https://creativecommons.org/licenses/by-sa/2.5/)
18
+
19
+ **Attribution**:
20
+ Original content sourced from [UESP.net](https://en.uesp.net/), compiled into dataset form by *RoyalCities* for research and NLP applications.
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - elder-scrolls
6
+ - video-games
7
+ - oblivion
8
+ - skyrim
9
+ - morrowind
10
+ - gaming
11
+ - rag
12
+ - knowledge-base
13
+ - wiki
14
+ license: "other"
15
+ pretty_name: "The Elder Scrolls Wiki Dataset"
16
+ ---
17
+
18
+ # The Elder Scrolls Wiki Dataset
19
+
20
+ This dataset is a snapshot of the Unofficial Elder Scrolls Pages (UESP) wiki, curated and organized by game: **Skyrim**, **Morrowind**, and **Oblivion**. It is designed for use in retrieval-augmented generation (RAG) pipelines, knowledge base construction, semantic search, and other natural language processing (NLP) tasks relevant to The Elder Scrolls universe.
21
+
22
+ ## πŸ“š Dataset Summary
23
+
24
+ - **Source**: [UESP Wiki](https://en.uesp.net/)
25
+ - **Snapshot Date**: April 2025
26
+ - **License**: [CC BY-SA 2.5](https://en.uesp.net/wiki/UESPWiki:Copyrights)
27
+ - **Format**: Markdown and JSONL
28
+
29
+ ## πŸ“‚ Folder Structure
30
+
31
+ ```
32
+ UESP_Wiki_Dataset/
33
+ β”œβ”€β”€ LICENSE # CC-BY-SA-3.0 license with attribution to UESP
34
+ β”œβ”€β”€ markdown/
35
+ β”‚ β”œβ”€β”€ Skyrim_md/ # Markdown pages from Skyrim
36
+ β”‚ β”œβ”€β”€ Morrowind_md/ # Markdown pages from Morrowind
37
+ β”‚ └── Oblivion_md/ # Markdown pages from Oblivion
38
+ └── jsonl/
39
+ β”œβ”€β”€ Skyrim.jsonl # Structured JSON lines for Skyrim
40
+ β”œβ”€β”€ Morrowind.jsonl # Structured JSON lines for Morrowind
41
+ └── Oblivion.jsonl # Structured JSON lines for Oblivion
42
+
43
+ ```
44
+
45
+ Each `.jsonl` file contains entries structured as follows:
46
+
47
+ ```json
48
+ {
49
+ "title": "Oblivion 2920 Evening Star v12",
50
+ "game": "Oblivion",
51
+ "text": "# Oblivion: 2920, Evening Star (v12)..."
52
+ }
53
+ ```
54
+
55
+ ## πŸ“Š Dataset Stats
56
+
57
+ | Game | Pages |
58
+ |------------|-------|
59
+ | Skyrim | 13,316 |
60
+ | Morrowind | 8,064 |
61
+ | Oblivion | 6,398 |
62
+
63
+ ## βš™οΈ Use Cases
64
+
65
+ - Retrieval-augmented generation (RAG) pipelines
66
+ - Conversational AI grounded in Elder Scrolls lore
67
+ - Game modding / lore crafting assistants
68
+ - General knowledge exploration tools
69
+
70
+ ### πŸ™ Acknowledgements
71
+
72
+ **Enormous thanks** to the editors and contributors of [UESP.net](https://en.uesp.net/), who have meticulously curated The Elder Scrolls universe since 1995. This dataset would not exist without their tireless dedication, and I deeply respect the community’s ongoing work. I encourage everyone to support and visit [UESP.net](https://en.uesp.net/) for the most up-to-date and comprehensive Elder Scrolls content.
73
+
74
+ ### ⚠️ Limitations
75
+
76
+ This dataset represents a static export from April 2025 and may not reflect subsequent wiki edits or corrections. It currently includes content from **Morrowind**, **Oblivion**, and **Skyrim** only, and does not cover earlier titles such as **Daggerfall** or **Arena**.
77
+
78
+ For the latest and most authoritative information, please refer to [UESP.net](https://en.uesp.net/).
79
+
80
+ ## πŸ“„ License
81
+
82
+ This dataset is distributed under the [Creative Commons Attribution-ShareAlike 2.5 License](./LICENSE.md).
83
+
84
+