Update README.md
Browse files
README.md
CHANGED
|
@@ -34,4 +34,84 @@ configs:
|
|
| 34 |
data_files:
|
| 35 |
- split: train
|
| 36 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
data_files:
|
| 35 |
- split: train
|
| 36 |
path: data/train-*
|
| 37 |
+
task_categories:
|
| 38 |
+
- text-generation
|
| 39 |
+
- text-classification
|
| 40 |
+
- summarization
|
| 41 |
+
language:
|
| 42 |
+
- sk
|
| 43 |
+
tags:
|
| 44 |
+
- legal
|
| 45 |
+
- politic
|
| 46 |
+
- transcripts
|
| 47 |
+
- parliament
|
| 48 |
+
- slovak
|
| 49 |
+
pretty_name: Slovak Plenary Transcript Corpus (2001–2024)
|
| 50 |
+
size_categories:
|
| 51 |
+
- 100K<n<1M
|
| 52 |
---
|
| 53 |
+
|
| 54 |
+
# Slovak Plenary Transcript Corpus (2001–2024)
|
| 55 |
+
|
| 56 |
+
This dataset contains segmentated full-text transcripts of the **Slovak National Council** (Národná rada Slovenskej republiky) plenary sessions, covering a **23-year period from 2001 to 2024**. The transcripts were collected by scraping official `.docx` documents from the [Spoločná česko-slovenská digitálna parlamentná knižnica](https://www.nrsr.sk/dl/) and subsequently parsing it.
|
| 57 |
+
|
| 58 |
+
## 📌 Dataset Summary
|
| 59 |
+
|
| 60 |
+
- Total of **66,412,216 words**
|
| 61 |
+
- Total of **220,721,383 tokens** (estimated using GPT-2 tokenizer)
|
| 62 |
+
- Structured into speech segments with speaker names, roles
|
| 63 |
+
- Includes contextual notes from transcribers (e.g., background noise, references)
|
| 64 |
+
- Suitable for speech modeling, political discourse analysis, and Slovak NLP
|
| 65 |
+
|
| 66 |
+
## 📁 Data Structure
|
| 67 |
+
|
| 68 |
+
Each dataset sample is a dictionary with the following fields:
|
| 69 |
+
|
| 70 |
+
```json
|
| 71 |
+
{
|
| 72 |
+
"id": 2183662,
|
| 73 |
+
"session_num": 31,
|
| 74 |
+
"snapshot": "2018-05-16",
|
| 75 |
+
"session_name": "Autorizovaná rozprava",
|
| 76 |
+
"segment_num": 56,
|
| 77 |
+
"speaker": "Bugár, Béla, podpredseda NR SR",
|
| 78 |
+
"first_name": "Béla",
|
| 79 |
+
"last_name": "Bugár",
|
| 80 |
+
"role": "podpredseda NR SR",
|
| 81 |
+
"transcript": "Vážené panie poslankyne, páni poslanci, pristúpime k hlasovaniam. Prosím pána poslanca Laurenčíka, aby uviedol hlasovanie o návrhu uznesenia. (Ruch v sále.) Vážené panie poslankyne, páni poslanci, prosím o väčší kľud. Budeme hlasovať o návrhu na vyslanie príslušníkov ozbrojených síl Slovenskej republiky v rámci Posilnenej predsunutej prítomnosti NATO do Lotyšskej republiky, Litovskej republiky, Estónskej republiky a Poľskej republiky (tlač 977).",
|
| 82 |
+
"transcriber_notes": ["(Ruch v sále.)", "(tlač 977)"]
|
| 83 |
+
}
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
### 🔍 Field Descriptions
|
| 87 |
+
|
| 88 |
+
- **`id`**: Unique identifier of the row
|
| 89 |
+
- **`session_num`**: Number of the session in the current election term
|
| 90 |
+
- **`snapshot`**: Date on which the session took place
|
| 91 |
+
- **`session_name`**: Name under which the session was listed
|
| 92 |
+
- **`segment_num`**: Index of the speech segment within the session
|
| 93 |
+
- **`speaker`**: Raw string capturing the full speaker line
|
| 94 |
+
- **`first_name`**: Speaker’s parsed first name. This may sometimes be an initial (e.g., **B** in the case of **B. Bugár**).
|
| 95 |
+
- **`last_name`**: Speaker’s parsed last name
|
| 96 |
+
- **`role`**: Speaker’s official role at the time of the session
|
| 97 |
+
- **`transcript`**: Full text of the speaker’s utterance
|
| 98 |
+
- **`transcriber_notes`**: A list of in-transcript contextual notes (e.g., background noise, document references)
|
| 99 |
+
|
| 100 |
+
> 💡 **Note:**
|
| 101 |
+
> The fields `first_name`, `last_name`, and `role` were derived from the original `speaker` field using **regex** or **manual inspection**. Similarly, the `transcriber_notes` field was extracted using **regex matching**.
|
| 102 |
+
|
| 103 |
+
A session is uniquely identified by the combination of `session_num` and `session_name`. In rare cases, these fields may be null. Such edge cases typically did not follow typical regular patterns and could not be reliably identified.
|
| 104 |
+
Each `segment_num` represents a sequential speech segment within the session.
|
| 105 |
+
|
| 106 |
+
## Authors
|
| 107 |
+
|
| 108 |
+
This dataset was created and prepared by [Erik Božík](https://huggingface.co/erikbozik). Feel free to contact for questions or contributions. If you use the **Slovak Plenary Transcript Corpus (2001–2024)** in your research or project, please cite it as follows:
|
| 109 |
+
|
| 110 |
+
```bibtex
|
| 111 |
+
@misc{slovakplenary2024,
|
| 112 |
+
author = {Erik Božík},
|
| 113 |
+
title = {Slovak Plenary Transcript Corpus (2001–2024)},
|
| 114 |
+
year = {2025},
|
| 115 |
+
url = {https://huggingface.co/datasets/erikbozik/slovak-plenary-transcript-corpus}
|
| 116 |
+
}
|
| 117 |
+
```
|