wincode commited on
Commit
4f7e4c7
·
verified ·
1 Parent(s): 0707cea

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ task_categories:
6
+ - text-generation
7
+ tags:
8
+ - creative-writing
9
+ - storytelling
10
+ - synthetic
11
+ - procedural
12
+ - from-scratch
13
+ size_categories:
14
+ - 10K<n<100K
15
+ ---
16
+
17
+ # AetherStory Dataset
18
+
19
+ A **procedurally generated** corpus of unique fantasy fables, purpose-built to
20
+ train the [AetherStory](https://huggingface.co/wincode/aetherstory) storyteller
21
+ model. Every story is synthesised on the fly from a combinatorial space of
22
+ realms, creatures, character archetypes, magic systems, and plot scaffolds.
23
+
24
+ ## Why this dataset is unique
25
+
26
+ It is **not scraped** from the web. Each fable is constructed by code from
27
+ hand-written ingredients, so:
28
+
29
+ - there is **no copyright risk** — every word is original or drawn from
30
+ public-domain-style aphorisms,
31
+ - the dataset is **fully reproducible** from a single seed,
32
+ - the **combination space** is astronomically larger than the corpus itself,
33
+ so duplicates are effectively impossible.
34
+
35
+ See `stats.json` for the exact size and ingredient counts of this release.
36
+
37
+ ## Structure
38
+
39
+ Each line of `stories.jsonl` is a JSON object:
40
+
41
+ ```json
42
+ {
43
+ "id": 0,
44
+ "text": "In the Glasslands there lived a wind-listener. ...",
45
+ "hero": "a wind-listener",
46
+ "creature": "a hollow crow",
47
+ "realm": "the Glasslands",
48
+ "magic": "freezing moments in glass",
49
+ "scaffold": "betrayal",
50
+ "moral_source": "synthetic",
51
+ "moral": "In the end, an unspoken name outlasts the cleverest lie."
52
+ }
53
+ ```
54
+
55
+ ## Regeneration
56
+
57
+ ```bash
58
+ python scripts/build_dataset.py --num-stories 50000
59
+ ```
60
+
61
+ ## License
62
+
63
+ MIT — the dataset, the generator code, and the curated morals are all released
64
+ under MIT. Do whatever you like; attribution appreciated.