File size: 1,293 Bytes
13c91f5 873dc49 56dbb28 1157cb3 13c91f5 873dc49 37d5034 0c9b8e7 6f57010 873dc49 6d58f21 873dc49 8c02a80 873dc49 |
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 |
---
license: cc-by-4.0
language:
- sr
pretty_name: Serbian WikiMedia dataset
size_categories:
- 100M<n<1B
configs:
- config_name: default
data_files:
- split: train
path:
- SrpKorNews-1_sr.txt
- SrpKorNews-2_sr.txt
task_categories:
- text-generation
---
# Highly curated, High-quality, Serbian news corpus
Each line represents document.
Each Sentence in a document is delimited.
Dataset contains Serbian news source articles which were post-processed and corrected both automatically and manually.
It contains around 468 million words.
```python
from datasets import load_dataset
dataset = load_dataset("jerteh/SrpKorNews")
```
Preview:
```python
print(dataset["train"][3088])
{'text': '"Srbija je dobro mesto za investicije i to bi trebalo iskoristiti, kako bi mladi ljudi imali dobru perspektivu", izjavio je tada Bufije na sastanku u Vizbadenu.'}
```
Citation:
```bibtex
@Inbook{CvRS2023LRS,
author="Krstev, Cvetana and Stankovi{\'{c}}, Ranka",
editor="Rehm, Georg and Way, Andy",
title="Language Report Serbian",
bookTitle="European Language Equality: A Strategic Agenda for Digital Language Equality ",
year="2023",
publisher="Springer International Publishing",
address="Cham",
pages="203--206",
isbn="978-3-031-28819-7",
doi="10.1007/978-3-031-28819-7_32"
}
``` |