File size: 3,486 Bytes
cb325ae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b59be2a
cb325ae
 
 
b59be2a
 
 
 
 
 
a15484b
b59be2a
 
cb325ae
 
 
 
 
 
 
b59be2a
cb325ae
b59be2a
 
 
cb325ae
 
b59be2a
cb325ae
b59be2a
cb325ae
b59be2a
cb325ae
 
 
b59be2a
 
 
cb325ae
b59be2a
cb325ae
 
 
 
 
 
 
 
b59be2a
cb325ae
 
 
 
b59be2a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
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: 23188
  num_rows: 23188
configs:
- config_name: default
  data_files: data/data.parquet
---

# Aleppo Codex (כתר ארם צובא)

## Description

The Aleppo Codex (Keter Aram Tzova) — the oldest and most authoritative manuscript of the Hebrew Bible, dating to approximately 930 CE. It was produced in Tiberias by the scribe Shlomo ben Buya'a, with vocalization added by Aaron ben Moses ben Asher, the most renowned Masorete. The codex represents the pinnacle of the Ben Asher Masoretic tradition.

Despite suffering damage in 1947 (approximately 40% of the manuscript was lost), the surviving portions are considered the most accurate witness to the Ben Asher text. It is the only surviving manuscript that ben Asher himself vocalized and annotated.

**Important:** This text is **consonants only** — without vocalization (niqqud) or cantillation marks (te'amim). The surviving Aleppo Codex pages cover only part of the Tanakh, but the electronic transcription (from Mechon Mamre) fills in the missing sections from other Masoretic manuscripts to create a complete Old Testament text.

**Source:** The electronic edition at [Mechon Mamre](http://www.mechon-mamre.org/), a digital transcription of the Aleppo Codex.

**License:** Public Domain.

## Dataset Structure

Each row represents one Bible verse.

| Column | Type | Description |
|--------|------|-------------|
| `translation_id` | string | Translation identifier: `aleppo_codex_he` |
| `translation` | string | Full translation name |
| `language` | string | Language code: `he` |
| `book_number` | int32 | Book number (1-39 for Old Testament) |
| `book` | string | Book name (English) |
| `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 (`{book_abbr}_{chapter}_{verse}`) |
| `text` | string | Verse text in Hebrew script (consonants only, no niqqud) |

## Statistics

- **Books:** 39 (complete Old Testament / Tanakh)
- **Verses:** 23,188
- **Language:** Biblical Hebrew (hbo)
- **Format:** Parquet (ZSTD compressed)
- **File size:** 0.92 MB

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("k-mktr/aleppo_codex_he", split="train")
print(dataset[0])
# {'translation_id': 'aleppo_codex_he', 'book': 'Genesis', 'chapter': 1, 'verse': '1', 'text': 'בראשית ברא אלהים את השמים ואת הארץ'}
```

## License

Public Domain.

## Notes

- This is a **consonantal text** (no vowel points or cantillation marks).
- For a fully vocalized Hebrew Old Testament, see `k-mktr/westminster_leningrad_codex_he` or `k-mktr/hebrew_masoretic_ot_hbo`.
- Verse count differs slightly from the fully vocalized versions due to differing verse division conventions between the Ben Asher tradition and the Leningrad Codex.