brandburner commited on
Commit
22fa0de
·
verified ·
1 Parent(s): 717015b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +106 -3
README.md CHANGED
@@ -1,3 +1,106 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - graph-ml
5
+ - text-generation
6
+ - feature-extraction
7
+ tags:
8
+ - knowledge-graph
9
+ - narrative-analysis
10
+ - neo4j
11
+ - i-claudius
12
+ - television
13
+ - historical-drama
14
+ - screenplay-analysis
15
+ - entity-extraction
16
+ - relationship-extraction
17
+ pretty_name: I, Claudius Complete Series Narrative Knowledge Graph
18
+ size_categories:
19
+ - 10K<n<100K
20
+ language:
21
+ - en
22
+ configs:
23
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: data/train_tabular.jsonl
27
+ - split: validation
28
+ path: data/validation_tabular.jsonl
29
+ - split: test
30
+ path: data/test_tabular.jsonl
31
+ - config_name: full_graph
32
+ data_files:
33
+ - split: train
34
+ path: data/train.json
35
+ - split: validation
36
+ path: data/validation.json
37
+ - split: test
38
+ path: data/test.json
39
+ ---
40
+
41
+ # I, Claudius Complete Series Narrative Knowledge Graph
42
+
43
+ ## Dataset Description
44
+
45
+ This dataset contains a comprehensive narrative knowledge graph extracted from all 13 episodes of the BBC's "I, Claudius" (1976), analyzed using the Fabula V2 pipeline. The graph captures the complex web of Roman imperial politics, family dynamics, and power struggles across the reigns of Augustus, Tiberius, Caligula, and Claudius.
46
+
47
+ ### Dataset Summary
48
+
49
+ - **Total Nodes**: 10,357
50
+ - **Total Relationships**: 34,242
51
+ - **Episodes Analyzed**: 13 (complete series)
52
+ - **Series**: I, Claudius (1976)
53
+ - **Based on**: Novels by Robert Graves
54
+
55
+ ### Key Statistics
56
+
57
+ Entity counts and relationships have been extracted across the entire series, capturing the rise and fall of emperors, political machinations, and the transformation of Rome from Republic to Empire.
58
+
59
+ ## Usage
60
+
61
+ ### Loading the Dataset
62
+
63
+ ```python
64
+ from datasets import load_dataset
65
+
66
+ # Load tabular format (for exploration)
67
+ dataset = load_dataset("brandburner/i-claudius-narrative-kg")
68
+
69
+ # Load full graph format
70
+ dataset = load_dataset("brandburner/i-claudius-narrative-kg", "full_graph")
71
+ ```
72
+
73
+ ### Dataset Structure
74
+
75
+ The dataset provides two configurations:
76
+
77
+ 1. **default** (Tabular format): Simplified node-centric view for HuggingFace dataset viewer
78
+ 2. **full_graph**: Complete knowledge graph with all properties and relationships
79
+
80
+ ## Additional Information
81
+
82
+ ### Series Context
83
+ "I, Claudius" follows the history of the Roman Empire from Augustus through Claudius, told through the eyes of Claudius himself. The series is renowned for its complex political intrigue and character development.
84
+
85
+ ### Processing Pipeline
86
+ Created using Fabula V2, which performs:
87
+ - Hierarchical narrative decomposition
88
+ - Entity extraction and resolution across episodes
89
+ - Relationship mapping
90
+ - Theme and conflict analysis
91
+ - Character participation tracking
92
+
93
+ ## License
94
+
95
+ This dataset is released under the Apache 2.0 License.
96
+
97
+ ## Citation
98
+
99
+ ```bibtex
100
+ @dataset{i_claudius_kg_2025,
101
+ title={I, Claudius Complete Series Narrative Knowledge Graph},
102
+ author={brandburner},
103
+ year={2025},
104
+ publisher={Hugging Face}
105
+ }
106
+ ```