CoolFace
Datasetpublic

k-mktr/kjv_gpl_en

King James Version (GPL Edition) Description The King James Version (KJV), also known as the Authorized Version, is the most influential English Bible translation ever produced. First published in 1611 by a commission of 47 scholars appointed by King James I, it was translated from the original Hebrew and Greek texts. This edition is released under the GNU General Public License (GPL) by the getBible project. While the KJV text itself is public domain, this… See the full description on the dataset page: https://huggingface.co/datasets/k-mktr/kjv_gpl_en.

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes79downloads
Dataset Card

King James Version (GPL Edition)

Description

The King James Version (KJV), also known as the Authorized Version, is the most influential English Bible translation ever produced. First published in 1611 by a commission of 47 scholars appointed by King James I, it was translated from the original Hebrew and Greek texts. This edition is released under the GNU General Public License (GPL) by the getBible project. While the KJV text itself is public domain, this particular edition includes additional formatting and markup. The KJV is known for its majestic language and has shaped English literature, culture, and religion for over 400 years. It includes the Protestant canon (66 books).

Dataset Structure

Each row represents one Bible verse.

ColumnTypeDescription
translation_idstringTranslation identifier
translationstringFull translation name
languagestringLanguage code
book_numberint32Book number (1-66)
bookstringBook name
book_abbrstringBook abbreviation
chapterint32Chapter number
versestringVerse number (may include suffixes like 13a)
verse_numberint32Numeric part of verse
verse_suffixstringVerse suffix (e.g. a, b) or null
verse_idstringUnique verse identifier ({book_abbr}_{chapter}_{verse})
textstringVerse text

Statistics

  • Books: 66
  • Verses: 31102
  • Language: English
  • Format: Parquet (ZSTD compressed)
  • File size: 2.22 MB

Usage

python
from datasets import load_dataset

dataset = load_dataset("k-mktr/kjv_gpl_en", split="train")
print(dataset[0])
# {'translation_id': 'kjv_gpl_en', 'book': '...', 'chapter': 1, 'verse': '1', 'text': '...'}

License

GNU General Public License (GPL).