Datasets:

Modalities:
Text
Formats:
text
Languages:
Serbian
Size:
< 1K
Libraries:
Datasets
License:
procesaur commited on
Commit
873dc49
1 Parent(s): d94b76a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -1
README.md CHANGED
@@ -1,3 +1,46 @@
1
  ---
2
- license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - sr
5
+ pretty_name: Serbian WikiMedia dataset
6
+ size_categories:
7
+ - 100M<n<1B
8
+ configs:
9
+ - config_name: default
10
+ data_files:
11
+ - split: train
12
+ path:
13
+ - WikiKorpus.txt
14
+ - Sveznanje.txt
15
  ---
16
+
17
+ Dataset contains Serbian news source articles which were post-processed and corrected both automatically and manually.
18
+
19
+ ```python
20
+ from datasets import load_dataset
21
+ dataset = load_dataset("jerteh/SrpKorNews")
22
+ ```
23
+
24
+ Preview:
25
+
26
+ ```python
27
+ print(dataset["train"][3078])
28
+ {'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.'}
29
+ ```
30
+
31
+ Citation:
32
+
33
+ ```bibtex
34
+ @Inbook{CvRS2023LRS,
35
+ author="Krstev, Cvetana and Stankovi{\'{c}}, Ranka",
36
+ editor="Rehm, Georg and Way, Andy",
37
+ title="Language Report Serbian",
38
+ bookTitle="European Language Equality: A Strategic Agenda for Digital Language Equality ",
39
+ year="2023",
40
+ publisher="Springer International Publishing",
41
+ address="Cham",
42
+ pages="203--206",
43
+ isbn="978-3-031-28819-7",
44
+ doi="10.1007/978-3-031-28819-7_32"
45
+ }
46
+ ```