Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
json
Languages:
English
Size:
10K - 100K
License:
Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: cc-by-4.0
|
| 4 |
+
tags:
|
| 5 |
+
- ner
|
| 6 |
+
- bible
|
| 7 |
+
- biblical
|
| 8 |
+
- named-entity-recognition
|
| 9 |
+
- token-classification
|
| 10 |
+
task_categories:
|
| 11 |
+
- token-classification
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Biblical NER Dataset (Chirho)
|
| 15 |
+
|
| 16 |
+
BIO-tagged Named Entity Recognition dataset built from the King James Version (KJV)
|
| 17 |
+
Bible text with entity annotations from STEPBible TIPNR data and curated divine name lists.
|
| 18 |
+
|
| 19 |
+
## Format
|
| 20 |
+
|
| 21 |
+
JSONL with fields:
|
| 22 |
+
- `tokens_chirho`: List of word tokens
|
| 23 |
+
- `ner_tags_chirho`: List of BIO tags (one per token)
|
| 24 |
+
- `reference_chirho`: Bible verse reference
|
| 25 |
+
|
| 26 |
+
## Entity Types
|
| 27 |
+
|
| 28 |
+
- **PERSON**: Biblical persons (Moses, David, Paul, etc.)
|
| 29 |
+
- **DIVINE**: Names and titles of God (God, LORD, Jesus Christ, Holy Spirit, etc.)
|
| 30 |
+
- **PEOPLE_GROUP**: Nations and ethnic groups (Israelites, Philistines, etc.)
|
| 31 |
+
- **PLACE**: Geographical locations (Jerusalem, Egypt, Bethlehem, etc.)
|
| 32 |
+
- **EVENT**: Biblical events and feasts (Passover, Pentecost, Sabbath, etc.)
|
| 33 |
+
- **ARTIFACT**: Sacred objects (Urim, Thummim, etc.)
|
| 34 |
+
|
| 35 |
+
## Labels (BIO scheme)
|
| 36 |
+
|
| 37 |
+
O, B-PERSON, I-PERSON, B-DIVINE, I-DIVINE, B-PEOPLE_GROUP, I-PEOPLE_GROUP,
|
| 38 |
+
B-PLACE, I-PLACE, B-EVENT, I-EVENT, B-ARTIFACT, I-ARTIFACT
|
| 39 |
+
|
| 40 |
+
## Split Strategy
|
| 41 |
+
|
| 42 |
+
Split 80/10/10 by **book** (not by verse) to prevent data leakage.
|
| 43 |
+
|
| 44 |
+
## Sources
|
| 45 |
+
|
| 46 |
+
- **Text**: King James Version from ScrollMapper bible_databases (Public Domain)
|
| 47 |
+
- **Entities**: STEPBible TIPNR (CC BY) + curated divine names list
|
| 48 |
+
|
| 49 |
+
For God so loved the world that he gave his only begotten Son,
|
| 50 |
+
that whoever believes in him should not perish but have eternal life. - John 3:16
|