Datasets:
Add the Catena Aurea (Fathers on the Gospels) and the father_edges graph
Browse files- README.md +16 -4
- catena_aurea.jsonl +0 -0
- father_edges.jsonl +0 -0
README.md
CHANGED
|
@@ -10,6 +10,9 @@ tags:
|
|
| 10 |
- christianity
|
| 11 |
- aquinas
|
| 12 |
- summa-theologica
|
|
|
|
|
|
|
|
|
|
| 13 |
- bible
|
| 14 |
- vulgate
|
| 15 |
- citations
|
|
@@ -21,12 +24,16 @@ size_categories:
|
|
| 21 |
configs:
|
| 22 |
- config_name: summa
|
| 23 |
data_files: summa.jsonl
|
|
|
|
|
|
|
| 24 |
- config_name: douay_rheims
|
| 25 |
data_files: douay_rheims.jsonl
|
| 26 |
- config_name: clementine_vulgate
|
| 27 |
data_files: clementine_vulgate.jsonl
|
| 28 |
- config_name: scripture_edges
|
| 29 |
data_files: scripture_edges.jsonl
|
|
|
|
|
|
|
| 30 |
- config_name: internal_edges
|
| 31 |
data_files: internal_edges.jsonl
|
| 32 |
---
|
|
@@ -46,18 +53,21 @@ Source, ingest code, a live web explorer, and an MCP grounding server:
|
|
| 46 |
| config | rows | what |
|
| 47 |
|--------|------|------|
|
| 48 |
| `summa` | 3,115 | The Summa Theologica of Thomas Aquinas, one row per article, with its canonical citation (`ST I, q.2, a.3`) and full verbatim text. |
|
|
|
|
| 49 |
| `douay_rheims` | 35,786 | The Douay-Rheims Bible (Challoner revision), one row per verse, English. |
|
| 50 |
| `clementine_vulgate` | 35,809 | The Clementine Vulgate (Sixto-Clementine, 1592), one row per verse, Latin - keyed identically to the Douay-Rheims so a citation resolves to both languages. |
|
| 51 |
| `scripture_edges` | 9,449 | The citation graph: one row per (Summa article -> Scripture verse) edge. |
|
|
|
|
| 52 |
| `internal_edges` | 3,775 | The citation graph: one row per (Summa article -> Summa article) edge. |
|
| 53 |
|
| 54 |
```python
|
| 55 |
from datasets import load_dataset
|
| 56 |
|
| 57 |
-
summa
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
|
|
|
| 61 |
```
|
| 62 |
|
| 63 |
Every verse shares a `verse_key` (`john/1/14`) across the two Bibles and the edge
|
|
@@ -80,6 +90,8 @@ Full provenance and the per-text rights reasoning are in
|
|
| 80 |
|
| 81 |
- **Summa Theologica** - trans. Fathers of the English Dominican Province, 2nd rev. ed.
|
| 82 |
(1920-22). Public domain.
|
|
|
|
|
|
|
| 83 |
- **Douay-Rheims Bible** - Challoner revision (1749-52), via Project Gutenberg #1581.
|
| 84 |
Public domain.
|
| 85 |
- **Clementine Vulgate** - Sixto-Clementine (1592); electronic edition by The Clementine
|
|
|
|
| 10 |
- christianity
|
| 11 |
- aquinas
|
| 12 |
- summa-theologica
|
| 13 |
+
- church-fathers
|
| 14 |
+
- catena-aurea
|
| 15 |
+
- patristics
|
| 16 |
- bible
|
| 17 |
- vulgate
|
| 18 |
- citations
|
|
|
|
| 24 |
configs:
|
| 25 |
- config_name: summa
|
| 26 |
data_files: summa.jsonl
|
| 27 |
+
- config_name: catena_aurea
|
| 28 |
+
data_files: catena_aurea.jsonl
|
| 29 |
- config_name: douay_rheims
|
| 30 |
data_files: douay_rheims.jsonl
|
| 31 |
- config_name: clementine_vulgate
|
| 32 |
data_files: clementine_vulgate.jsonl
|
| 33 |
- config_name: scripture_edges
|
| 34 |
data_files: scripture_edges.jsonl
|
| 35 |
+
- config_name: father_edges
|
| 36 |
+
data_files: father_edges.jsonl
|
| 37 |
- config_name: internal_edges
|
| 38 |
data_files: internal_edges.jsonl
|
| 39 |
---
|
|
|
|
| 53 |
| config | rows | what |
|
| 54 |
|--------|------|------|
|
| 55 |
| `summa` | 3,115 | The Summa Theologica of Thomas Aquinas, one row per article, with its canonical citation (`ST I, q.2, a.3`) and full verbatim text. |
|
| 56 |
+
| `catena_aurea` | 814 | The Catena Aurea - Aquinas's patristic "golden chain" on the four Gospels, one row per verse-pericope: the verse commented on, the Church Fathers in the chain, and their full verbatim commentary. |
|
| 57 |
| `douay_rheims` | 35,786 | The Douay-Rheims Bible (Challoner revision), one row per verse, English. |
|
| 58 |
| `clementine_vulgate` | 35,809 | The Clementine Vulgate (Sixto-Clementine, 1592), one row per verse, Latin - keyed identically to the Douay-Rheims so a citation resolves to both languages. |
|
| 59 |
| `scripture_edges` | 9,449 | The citation graph: one row per (Summa article -> Scripture verse) edge. |
|
| 60 |
+
| `father_edges` | 3,783 | The patristic golden chain as edges: one row per (Catena Aurea pericope -> Gospel verse it comments on), with the Fathers who speak - which Fathers weigh in on which verse. |
|
| 61 |
| `internal_edges` | 3,775 | The citation graph: one row per (Summa article -> Summa article) edge. |
|
| 62 |
|
| 63 |
```python
|
| 64 |
from datasets import load_dataset
|
| 65 |
|
| 66 |
+
summa = load_dataset("TheAlvaroBalbin/catena", "summa")
|
| 67 |
+
fathers = load_dataset("TheAlvaroBalbin/catena", "catena_aurea")
|
| 68 |
+
verses = load_dataset("TheAlvaroBalbin/catena", "douay_rheims")
|
| 69 |
+
latin = load_dataset("TheAlvaroBalbin/catena", "clementine_vulgate")
|
| 70 |
+
edges = load_dataset("TheAlvaroBalbin/catena", "scripture_edges")
|
| 71 |
```
|
| 72 |
|
| 73 |
Every verse shares a `verse_key` (`john/1/14`) across the two Bibles and the edge
|
|
|
|
| 90 |
|
| 91 |
- **Summa Theologica** - trans. Fathers of the English Dominican Province, 2nd rev. ed.
|
| 92 |
(1920-22). Public domain.
|
| 93 |
+
- **Catena Aurea** - Aquinas's compilation of the Church Fathers on the Gospels, in the
|
| 94 |
+
Oxford translation edited by J. H. Newman (1841-45). Public domain.
|
| 95 |
- **Douay-Rheims Bible** - Challoner revision (1749-52), via Project Gutenberg #1581.
|
| 96 |
Public domain.
|
| 97 |
- **Clementine Vulgate** - Sixto-Clementine (1592); electronic edition by The Clementine
|
catena_aurea.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
father_edges.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|