document_id stringlengths 12 16 | legislative_body stringclasses 1
value | term int64 1 27 | year int64 1 5 | session int64 0 201 | volume int64 1 161 | page_num int64 | text stringlengths 52 18.8M | is_full_session bool 1
class | language stringclasses 2
values |
|---|---|---|---|---|---|---|---|---|---|
tbmm01001001_eht | TBMM | 1 | 1 | 1 | 1 | null |
===== PAGE 1 =====
# بوروک ملت جلسهی
ضبط جریدهی
B. M. M. Kütüphanesi
u eser Kütüphaneden dışarı Çıkmaz
---
# رنجی جلد
## رنجی اجتماع
### رنجی جلسه
۲۳ - نیمان - ۳۶ - مهر - ساعت ۲ چوی بیداروان
دیش - رئیس سین سپور - رئیس سین سپور
---
مقر سلطنتین خلیص نفس ایه بوردایه کین معنویان کرامدن
مرکبدر. خل... | true | ottoman_turkish |
tbmm01001002_eht | TBMM | 1 | 1 | 2 | 1 | null | "\n\n===== PAGE 1 =====\n# بوړوګ ملت جلسې\n\nضبط جريدهسي \nایکنجی ا(...TRUNCATED) | true | ottoman_turkish |
tbmm01001003_eht | TBMM | 1 | 1 | 3 | 1 | null | "\n\n===== PAGE 1 =====\n# بوبوك ملت جلمسي\n\n**اوجيي اجملاع** - رضي حب(...TRUNCATED) | true | ottoman_turkish |
tbmm01001004_eht | TBMM | 1 | 1 | 4 | 1 | null | "\n\n===== PAGE 1 =====\nدرجی احجائ\n\nرنجی جلسه\n\n۲۶ نیمان ۳۳۶ بازا(...TRUNCATED) | true | ottoman_turkish |
tbmm01001005_eht | TBMM | 1 | 1 | 5 | 1 | null | "\n\n===== PAGE 1 =====\n# بوروك ملت جملسی \nضبط جریدهسی \n\n## بشیج(...TRUNCATED) | true | ottoman_turkish |
tbmm01001007_eht | TBMM | 1 | 1 | 7 | 1 | null | "\n\n===== PAGE 1 =====\n# بویوګ ملت جملی\n\nضبط جریدهسی \nدینی اجت(...TRUNCATED) | true | ottoman_turkish |
tbmm01001008_eht | TBMM | 1 | 1 | 8 | 1 | null | "\n\n===== PAGE 1 =====\n# بویوګ ملت جملسی \n\nضبط جریدهسی \n--- \n\n##(...TRUNCATED) | true | ottoman_turkish |
tbmm01001009_eht | TBMM | 1 | 1 | 9 | 1 | null | "\n\n===== PAGE 1 =====\n# بیولوک مالت جملسی\n\nضبط جریده سی\n\n## طعم (...TRUNCATED) | true | ottoman_turkish |
tbmm01001010_eht | TBMM | 1 | 1 | 10 | 1 | null | "\n\n===== PAGE 1 =====\n# بووبوک ملت جلیسی\n\nضبط جریدهی \nاوخیجی (...TRUNCATED) | true | ottoman_turkish |
tbmm01001011_eht | TBMM | 1 | 1 | 11 | 1 | null | "\n\n===== PAGE 1 =====\n# بویوګ ملت جملسی\n\nضبط جریده سی\n\nاون برخی(...TRUNCATED) | true | ottoman_turkish |
End of preview. Expand in Data Studio
Grand National Assembly Corpus of Türkiye (GNACT)
A comprehensive collection of Turkish parliamentary transcripts spanning over 100 years (1920–present), from 10 legislative bodies. Includes both Ottoman Turkish (1920–1928) and Modern Turkish (1928–present) texts.
Loading the dataset
from datasets import load_dataset
# Strategy 1: full session documents, all bodies (default)
ds = load_dataset("boun-tabilab/turkish_parliamentary_data", "full_sessions", split="train")
# Strategy 2: page-level, all bodies
ds = load_dataset("boun-tabilab/turkish_parliamentary_data", "pages", split="train")
# Strategy 3: TBMM only, all terms
ds = load_dataset("boun-tabilab/turkish_parliamentary_data", "tbmm_only", split="train")
# Filter after loading (e.g. TBMM term 22, year 3)
ds_t22 = ds.filter(lambda x: x["term"] == 22)
ds_t22_y3 = ds.filter(lambda x: x["term"] == 22 and x["year"] == 3)
Configs
| Config | Granularity | Bodies | Shards |
|---|---|---|---|
full_sessions |
Document | All 10 | 27 |
pages |
Page | All 10 | 20 |
tbmm_only |
Document | TBMM only | 16 |
Columns
| Column | Type | Description |
|---|---|---|
document_id |
string | Unique document identifier |
legislative_body |
string | Legislative body name |
term |
int32 | Legislative term number |
year |
int32 | Year within the term |
session |
int32 | Session number |
volume |
int32 | Volume number |
page_num |
int32 | Page number (0 for full-session rows) |
text |
string | OCR-extracted text |
is_full_session |
bool | True for document rows, False for page rows |
language |
string | tr (Modern Turkish) or ota (Ottoman Turkish) |
Legislative bodies
| Code | Name |
|---|---|
| TBMM | Türkiye Büyük Millet Meclisi (Grand National Assembly) |
| MM | Millet Meclisi (National Assembly) |
| CS | Cumhuriyet Senatosu (Senate of the Republic) |
| BT | Birleşik Toplantı (Joint Sessions) |
| MGK | Milli Güvenlik Konseyi (National Security Council) |
| MBK | Milli Birlik Komitesi (National Unity Committee) |
| KM | Kurucu Meclis (Constituent Assembly) |
| DM | Danışma Meclisi (Advisory Council) |
| TM | Temsilciler Meclisi (House of Representatives) |
| GC | Gizli Celse / Kapalı Oturum (Secret/Closed Sessions) |
License
Citation
@dataset{turkish_parliamentary_data_2026,
title = {Turkish Parliamentary Data 2026: Grand National Assembly Corpus of Türkiye (GNACT)},
year = {2026},
url = {https://huggingface.co/datasets/boun-tabilab/turkish_parliamentary_data},
license = {CC BY-NC-SA 4.0}
}
- Downloads last month
- 252