sermonindex/bible-reference
Bible Reference Corpus Thirteen aligned reference datasets for study of the biblical text: Greek and Hebrew lexicons keyed to Strong's numbers, an interlinear word map, the critical apparatus of eight Greek editions, cross-reference and topical indexes, and geolocated places. Published by SermonIndex. Everything in this repository is public domain or CC BY 4.0. Sources with share-alike terms are kept in a separate repository, sermonindex/bible-reference-sa, so that a share-alike… See the full description on the dataset page: https://huggingface.co/datasets/sermonindex/bible-reference.
Bible Reference Corpus
Thirteen aligned reference datasets for study of the biblical text: Greek and Hebrew lexicons keyed to Strong's numbers, an interlinear word map, the critical apparatus of eight Greek editions, cross-reference and topical indexes, and geolocated places.
Published by SermonIndex.
Everything in this repository is public domain or CC BY 4.0. Sources with share-alike terms are kept in a separate repository, `sermonindex/bible-reference-sa`, so that a share-alike obligation is never inherited by accident.
Contents
Verse-keyed configs share reference, book, book_order, testament, chapter, verse. Word-keyed configs share strongs and lemma. So any of these can be joined to each other, and to `sermonindex/bible`, on those fields.
Lexicons in strongs and dictionary
Each entry carries its own module, name and licence fields, so attribution can be reconstructed per row rather than taken on trust from this table.
Deliberately excluded. Two modules that appear on sermonindex.net are not in this release: the Mounce Concise Greek-English Dictionary (© 1993 teknia.com, non-commercial use only) and the Intermediate Liddell-Scott-Jones (CC BY-SA). Do not expect this dataset to reproduce the site's lexicon panel exactly.
Other attributions
- Hebrew text and morphology: TAHOT, STEPBible, CC BY 4.0
- Greek word data and renderings: Translators Amalgamated Greek NT, STEPBible, CC BY 4.0
- SBL Greek New Testament, CC BY 4.0
- Place geocoding: OpenBible.info Bible Geocoding, CC BY 4.0; geometry partly OpenStreetMap
- Papyri attestations: Duke Databank of Documentary Papyri, CC BY 3.0
- Treasury of Scripture Knowledge and Nave's Topical Bible: public domain
Example
from datasets import load_dataset
s = load_dataset("sermonindex/bible-reference", "strongs", split="train")
agape = [r for r in s if r["key"] == "G25"][0]
for e in agape["entries"]:
print(e["name"], "—", e["licence"])Caveats
- `meanings` is machine-generated. The
simplefield is a plain-English paraphrase produced by a language model from the public-domain lexicon entries, then reviewed against them. It is a study aid, not a lexicographic source, and it should not be treated as ground truth or used to train a model that will be evaluated as a lexicon. Everything else in the config (kjv_def,tyndale,brief,lexicon_note) is from the public-domain sources. placescarries aconfidenceandscoreper identification. Low-confidence identifications are disputed among geographers; do not read them as settled.- Strong's numbering is itself an editorial scheme from 1890 and does not map one-to-one onto modern lexical analysis. Some keys carry letter suffixes (
G1003a) where later editors split an entry. - OCR and transcription of the older lexicons is good but not perfect, particularly for pointed Hebrew and polytonic Greek diacritics.
Citation
@misc{sermonindex_bible_reference,
title = {Bible Reference Corpus},
author = {SermonIndex},
year = {2026},
url = {https://huggingface.co/datasets/sermonindex/bible-reference}
}