--- dataset_info: - config_name: default features: - name: translation_id dtype: string - name: translation dtype: string - name: language dtype: string - name: book_number dtype: int32 - name: book dtype: string - name: book_abbr dtype: string - name: chapter dtype: int32 - name: verse dtype: string - name: verse_number dtype: int32 - name: verse_suffix dtype: string - name: verse_id dtype: string - name: text dtype: string splits: - name: train num_examples: 31102 num_rows: 31102 configs: - config_name: default data_files: data/data.parquet --- # King James Version (1769) with Strong's Numbers ## Description The King James Version (1769 edition) enhanced with Strong's numbering system, morphology, catchwords, and the Apocrypha. The Strong's numbers enable cross-referencing with Hebrew (Old Testament) and Greek (New Testament) lexicons, making this invaluable for word studies. Includes the Apocrypha (without glosses). **Source:** CrossWire Bible Society electronic text. **License:** GNU General Public License (GPL) ## Dataset Structure Each row represents one Bible verse. | Column | Type | Description | |--------|------|-------------| | `translation_id` | string | Translation identifier: `king_james_version_strongs_en` | | `translation` | string | Full translation name | | `language` | string | Language code: `en` | | `book_number` | int32 | Book number | | `book` | string | Book name | | `book_abbr` | string | Book abbreviation | | `chapter` | int32 | Chapter number | | `verse` | string | Verse number | | `verse_number` | int32 | Numeric part of verse | | `verse_suffix` | string | Verse suffix or null | | `verse_id` | string | Unique verse identifier | | `text` | string | Verse text | ## Statistics - **Books:** 66 - **Verses:** 31,102 - **Language:** English - **Format:** Parquet (ZSTD compressed) ## Usage ```python from datasets import load_dataset dataset = load_dataset("k-mktr/king_james_version_strongs_en", split="train") print(dataset[0]) ``` ## License GNU General Public License (GPL)