Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
dataset_info:
|
| 3 |
+
- config_name: default
|
| 4 |
+
features:
|
| 5 |
+
- name: translation_id
|
| 6 |
+
dtype: string
|
| 7 |
+
- name: translation
|
| 8 |
+
dtype: string
|
| 9 |
+
- name: language
|
| 10 |
+
dtype: string
|
| 11 |
+
- name: book_number
|
| 12 |
+
dtype: int32
|
| 13 |
+
- name: book
|
| 14 |
+
dtype: string
|
| 15 |
+
- name: book_abbr
|
| 16 |
+
dtype: string
|
| 17 |
+
- name: chapter
|
| 18 |
+
dtype: int32
|
| 19 |
+
- name: verse
|
| 20 |
+
dtype: string
|
| 21 |
+
- name: verse_number
|
| 22 |
+
dtype: int32
|
| 23 |
+
- name: verse_suffix
|
| 24 |
+
dtype: string
|
| 25 |
+
- name: verse_id
|
| 26 |
+
dtype: string
|
| 27 |
+
- name: text
|
| 28 |
+
dtype: string
|
| 29 |
+
splits:
|
| 30 |
+
- name: train
|
| 31 |
+
num_examples: 31102
|
| 32 |
+
num_rows: 31102
|
| 33 |
+
configs:
|
| 34 |
+
- config_name: default
|
| 35 |
+
data_files: data/data.parquet
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
# King James Version (1769) with Strong's Numbers
|
| 39 |
+
|
| 40 |
+
## Description
|
| 41 |
+
|
| 42 |
+
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).
|
| 43 |
+
|
| 44 |
+
**Source:** CrossWire Bible Society electronic text.
|
| 45 |
+
|
| 46 |
+
**License:** GNU General Public License (GPL)
|
| 47 |
+
|
| 48 |
+
## Dataset Structure
|
| 49 |
+
|
| 50 |
+
Each row represents one Bible verse.
|
| 51 |
+
|
| 52 |
+
| Column | Type | Description |
|
| 53 |
+
|--------|------|-------------|
|
| 54 |
+
| `translation_id` | string | Translation identifier: `king_james_version_strongs_en` |
|
| 55 |
+
| `translation` | string | Full translation name |
|
| 56 |
+
| `language` | string | Language code: `en` |
|
| 57 |
+
| `book_number` | int32 | Book number |
|
| 58 |
+
| `book` | string | Book name |
|
| 59 |
+
| `book_abbr` | string | Book abbreviation |
|
| 60 |
+
| `chapter` | int32 | Chapter number |
|
| 61 |
+
| `verse` | string | Verse number |
|
| 62 |
+
| `verse_number` | int32 | Numeric part of verse |
|
| 63 |
+
| `verse_suffix` | string | Verse suffix or null |
|
| 64 |
+
| `verse_id` | string | Unique verse identifier |
|
| 65 |
+
| `text` | string | Verse text |
|
| 66 |
+
|
| 67 |
+
## Statistics
|
| 68 |
+
|
| 69 |
+
- **Books:** 66
|
| 70 |
+
- **Verses:** 31,102
|
| 71 |
+
- **Language:** English
|
| 72 |
+
- **Format:** Parquet (ZSTD compressed)
|
| 73 |
+
|
| 74 |
+
## Usage
|
| 75 |
+
|
| 76 |
+
```python
|
| 77 |
+
from datasets import load_dataset
|
| 78 |
+
|
| 79 |
+
dataset = load_dataset("k-mktr/king_james_version_strongs_en", split="train")
|
| 80 |
+
print(dataset[0])
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
## License
|
| 84 |
+
|
| 85 |
+
GNU General Public License (GPL)
|