procesaur commited on
Commit
4f85335
1 Parent(s): 4b06a67

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -1
README.md CHANGED
@@ -7,4 +7,78 @@ language:
7
  pretty_name: SrpKor4Tagging training dataset
8
  size_categories:
9
  - 100K<n<1M
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pretty_name: SrpKor4Tagging training dataset
8
  size_categories:
9
  - 100K<n<1M
10
+ ---
11
+
12
+
13
+ Corpus is created via mix of literary (⅓) and administrative (⅔) texts in Serbian.
14
+ It is tagged for POS for 2 tagsets: Universal POS tagset and SrpLemKor tagset (made according to traditional, descriptive Serbian grammar) and lemmatized
15
+
16
+
17
+ It is constituted of a single jsonl file that can be loaded via:
18
+
19
+ ```python
20
+ from datasets import load_dataset
21
+ dataset = load_dataset("jerteh/SrpKor4Tagging")
22
+ ```
23
+
24
+ Preview:
25
+
26
+ ```python
27
+ ds = dataset["train"][1389]
28
+ for x, y, z in zip(ds["token"], ds["ud"], ds["lemma"]):
29
+ print(x, y, z)
30
+
31
+ Okrugle ADJ okrugao
32
+ mongolske ADJ mongolski
33
+ fizionomije NOUN fizionomija
34
+ behu AUX biti
35
+ ustupile VERB ustupiti
36
+ mesto NOUN mesto
37
+ licima NOUN lice
38
+ evropskijeg ADJ evropski
39
+ tipa NOUN tip
40
+ , PUNCT ,
41
+ prljavim ADJ prljav
42
+ , PUNCT ,
43
+ obradatelim ADJ obradateo
44
+ i CCONJ i
45
+ iscrpenim ADJ iscrpen
46
+ . PUNCT .
47
+ ```
48
+
49
+ Citation:
50
+
51
+ ```bibtex
52
+ @inproceedings{stankovic-etal-2020-machine,
53
+ title = "Machine Learning and Deep Neural Network-Based Lemmatization and Morphosyntactic Tagging for {S}erbian",
54
+ author = "Stankovic, Ranka and
55
+ {\v{S}}andrih, Branislava and
56
+ Krstev, Cvetana and
57
+ Utvi{\'c}, Milo{\v{s}} and
58
+ Skoric, Mihailo",
59
+ editor = "Calzolari, Nicoletta and
60
+ B{\'e}chet, Fr{\'e}d{\'e}ric and
61
+ Blache, Philippe and
62
+ Choukri, Khalid and
63
+ Cieri, Christopher and
64
+ Declerck, Thierry and
65
+ Goggi, Sara and
66
+ Isahara, Hitoshi and
67
+ Maegaard, Bente and
68
+ Mariani, Joseph and
69
+ Mazo, H{\'e}l{\`e}ne and
70
+ Moreno, Asuncion and
71
+ Odijk, Jan and
72
+ Piperidis, Stelios",
73
+ booktitle = "Proceedings of the Twelfth Language Resources and Evaluation Conference",
74
+ month = may,
75
+ year = "2020",
76
+ address = "Marseille, France",
77
+ publisher = "European Language Resources Association",
78
+ url = "https://aclanthology.org/2020.lrec-1.487",
79
+ pages = "3954--3962",
80
+ abstract = "The training of new tagger models for Serbian is primarily motivated by the enhancement of the existing tagset with the grammatical category of a gender. The harmonization of resources that were manually annotated within different projects over a long period of time was an important task, enabled by the development of tools that support partial automation. The supporting tools take into account different taggers and tagsets. This paper focuses on TreeTagger and spaCy taggers, and the annotation schema alignment between Serbian morphological dictionaries, MULTEXT-East and Universal Part-of-Speech tagset. The trained models will be used to publish the new version of the Corpus of Contemporary Serbian as well as the Serbian literary corpus. The performance of developed taggers were compared and the impact of training set size was investigated, which resulted in around 98{\%} PoS-tagging precision per token for both new models. The sr{\_}basic annotated dataset will also be published.",
81
+ language = "English",
82
+ ISBN = "979-10-95546-34-4",
83
+ }
84
+ ```