CoolFace
Datasetpublic

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.

sourceHugging Facecc-by-4.0updated 11d agoView on Hugging Face
0likes101downloads
Dataset Card

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

ConfigRowsKeyed byWhat it is
strongs14,513Strong's no.Greek and Hebrew lexicon entries from 12 lexicons
dictionary14,117headwordBible dictionary and encyclopedia articles
meanings13,401Strong's no.Plain-English gloss per word (machine-generated, see caveats)
renderings5,410Strong's no.How translators rendered each word, with shares
sblgnt7,939verseSBL Greek New Testament text
hebrew_verses23,261verseHebrew OT, word by word with morphology
word_editions7,948verseWhere NA28, NA27, SBL, WH, Tregelles, Tyndale, TR and Byzantine differ
map31,064verseOriginal-language to English word alignment
tsk29,055verseTreasury of Scripture Knowledge cross-references
nave31,787verseNave's Topical Bible topics
places5,616verseGeolocated places with coordinates and confidence
papyri3,216Strong's no.Documentary papyri attestations by century
parallels2,526verseVerses with shared vocabulary, scored

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

EntriesLicenceModule
9,258Public domainInternational Standard Bible Encyclopedia
8,723CC BY 4.0Translators Brief Hebrew Lexicon (STEPBible)
8,674Public domainBrown-Driver-Briggs glosses
8,674Public domainStrong's Hebrew Dictionary
8,594Public domainBrown-Driver-Briggs Hebrew Lexicon, full
5,741Public domainStrong's Greek Dictionary
5,523CC BY 4.0Liddell-Scott-Jones, full edition (STEPBible)
5,488Public domainAbbott-Smith, Manual Greek Lexicon of the NT
5,408Public domainDodson Greek-English Lexicon
5,298Public domainNave's Topical Bible
4,771Public domainThayer's Greek-English Lexicon
4,537Public domainSmith's Bible Dictionary
4,032Public domainMoulton & Milligan, Vocabulary of the Greek Testament
3,921Public domainEaston's Bible Dictionary
2,610Public domainHitchcock's Bible Names Dictionary
2,277Public domainAmerican Tract Society Bible Dictionary
1,723Public domainThompson Chain Reference topics
626Public domainTorrey's New Topical Textbook
220Public domainTrench, Synonyms of the New Testament

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

python
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 simple field 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.
  • places carries a confidence and score per 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

bibtex
@misc{sermonindex_bible_reference,
  title  = {Bible Reference Corpus},
  author = {SermonIndex},
  year   = {2026},
  url    = {https://huggingface.co/datasets/sermonindex/bible-reference}
}