| --- |
| 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: 31100 |
| num_rows: 31100 |
| configs: |
| - config_name: default |
| data_files: data/data.parquet |
| --- |
| |
| # Dutch Staten Vertaling (1637) |
|
|
| ## Description |
|
|
| The Statenvertaling (States Translation) is the first official Dutch Bible translation, commissioned by the Synod of Dordrecht in 1618-1619 and published in 1637. It was translated from the original Hebrew, Aramaic, and Greek texts by a team of scholars. The Statenvertaling is the Dutch equivalent of the King James Version — it shaped the Dutch language and remained the standard Bible in Dutch Protestant churches for centuries. It includes the Protestant canon (66 books). |
|
|
| ## Dataset Structure |
|
|
| Each row represents one Bible verse. |
|
|
| | Column | Type | Description | |
| |--------|------|-------------| |
| | `translation_id` | string | Translation identifier | |
| | `translation` | string | Full translation name | |
| | `language` | string | Language code | |
| | `book_number` | int32 | Book number (1-66) | |
| | `book` | string | Book name | |
| | `book_abbr` | string | Book abbreviation | |
| | `chapter` | int32 | Chapter number | |
| | `verse` | string | Verse number (may include suffixes like `13a`) | |
| | `verse_number` | int32 | Numeric part of verse | |
| | `verse_suffix` | string | Verse suffix (e.g. `a`, `b`) or null | |
| | `verse_id` | string | Unique verse identifier (`{book_abbr}_{chapter}_{verse}`) | |
| | `text` | string | Verse text | |
|
|
| ## Statistics |
|
|
| - **Books:** 66 |
| - **Verses:** 31100 |
| - **Language:** Dutch |
| - **Format:** Parquet (ZSTD compressed) |
| - **File size:** 2.37 MB |
|
|
| ## Usage |
|
|
| ```python |
| from datasets import load_dataset |
| |
| dataset = load_dataset("k-mktr/staten_vertaling_nl", split="train") |
| print(dataset[0]) |
| # {'translation_id': 'staten_vertaling_nl', 'book': '...', 'chapter': 1, 'verse': '1', 'text': '...'} |
| ``` |
|
|
| ## License |
|
|
| Public domain (first published 1637, copyright expired). |
|
|