Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,10 +4,79 @@ task_categories:
|
|
| 4 |
- question-answering
|
| 5 |
language:
|
| 6 |
- sr
|
| 7 |
-
file_format:
|
| 8 |
-
- parquet
|
| 9 |
tags:
|
| 10 |
- text
|
| 11 |
- extractive-qa
|
| 12 |
- generative-qa
|
| 13 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- question-answering
|
| 5 |
language:
|
| 6 |
- sr
|
|
|
|
|
|
|
| 7 |
tags:
|
| 8 |
- text
|
| 9 |
- extractive-qa
|
| 10 |
- generative-qa
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Serbian Question-Answering Datasets
|
| 14 |
+
|
| 15 |
+
This repository provides multiple QA datasets in Serbian, suitable for training LLMs to answer questions, perform tasks, or function as chatbots.
|
| 16 |
+
|
| 17 |
+
## Datasets Overview
|
| 18 |
+
|
| 19 |
+
1. **SQuAD-sr-md** – Manually corrected subset of SQuAD-sr (~7k corrected samples), for higher reliability and accuracy.
|
| 20 |
+
2. **SerbianQA-Gen** – Synthetic QA dataset (~74k samples) generated from encyclopedia articles, Wikipedia pages, and scientific abstracts. Organized into four sub-datasets:
|
| 21 |
+
- **PaSaz**
|
| 22 |
+
- **Wikipedia**
|
| 23 |
+
- **Sveznanje**
|
| 24 |
+
- **Biblisha**
|
| 25 |
+
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
## Folder Structure
|
| 29 |
+
|
| 30 |
+
```text
|
| 31 |
+
QuestionAnswering/
|
| 32 |
+
│
|
| 33 |
+
├─ README.md
|
| 34 |
+
├─ SQuAD-sr-md/
|
| 35 |
+
│ └─ train.json
|
| 36 |
+
├─ SerbianQA-Gen/
|
| 37 |
+
│ ├─ PaSaz/
|
| 38 |
+
│ │ └─ train.json
|
| 39 |
+
│ ├─ Wikipedia/
|
| 40 |
+
│ │ └─ train.json
|
| 41 |
+
│ ├─ Sveznanje/
|
| 42 |
+
│ │ └─ train.json
|
| 43 |
+
│ └─ Biblisha/
|
| 44 |
+
│ └─ train.json
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
---
|
| 48 |
+
|
| 49 |
+
## Dataset Viewer Links
|
| 50 |
+
|
| 51 |
+
- **[SQuAD-sr-md](https://huggingface.co/datasets/JovanaR/SQuAD-sr-md?viewer=true)**
|
| 52 |
+
- **[SerbianQA-Gen / PaSaz](https://huggingface.co/datasets/JovanaR/PaSaz?viewer=true)**
|
| 53 |
+
- **[SerbianQA-Gen / Wikipedia](https://huggingface.co/datasets/JovanaR/Wikipedia?viewer=true)**
|
| 54 |
+
- **[SerbianQA-Gen / Sveznanje](https://huggingface.co/datasets/JovanaR/Sveznanje?viewer=true)**
|
| 55 |
+
- **[SerbianQA-Gen / Biblisha](https://huggingface.co/datasets/JovanaR/Biblisha?viewer=true)**
|
| 56 |
+
|
| 57 |
+
---
|
| 58 |
+
|
| 59 |
+
## About the Work
|
| 60 |
+
|
| 61 |
+
**Development of Serbian QA Datasets through Prompt-Based Generation and Human Validation**
|
| 62 |
+
*Jovana Rađenović, Olivera Kitanović, Ranka Stanković, Mihailo Škorić*
|
| 63 |
+
Faculty of Mining and Geology, University of Belgrade, Serbia
|
| 64 |
+
{jovana.radjenovic, olivera.kitanovic, ranka.stankovic, mihailo.skoric}@rgf.bg.ac.rs
|
| 65 |
+
|
| 66 |
+
> **Status:** Accepted, not yet published
|
| 67 |
+
|
| 68 |
+
Large Language Models (LLMs) rely on high-quality QA datasets. For Serbian, such datasets are scarce.
|
| 69 |
+
In this work, we systematically corrected and improved a subset of SQuAD-sr (~7k samples) and generated additional QA datasets (~74k samples) from multiple sources, providing reliable training data for Serbian QA models.
|
| 70 |
+
|
| 71 |
+
---
|
| 72 |
+
|
| 73 |
+
## Citation
|
| 74 |
+
|
| 75 |
+
```bibtex
|
| 76 |
+
@unpublished{Radjenovic2026SerbianQA,
|
| 77 |
+
title={Development of Serbian QA Datasets through Prompt-Based Generation and Human Validation},
|
| 78 |
+
author={Jovana Rađenović and Olivera Kitanović and Ranka Stanković and Mihailo Škorić},
|
| 79 |
+
year={2026},
|
| 80 |
+
note={Accepted, not yet published}
|
| 81 |
+
}
|
| 82 |
+
|