thebogko commited on
Commit
b6d9f39
1 Parent(s): e164cb9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +130 -0
README.md CHANGED
@@ -1,3 +1,133 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - token-classification
5
+ language:
6
+ - bg
7
+ pretty_name: Bulgarian Dictionary 2024
8
+ size_categories:
9
+ - 1M<n<10M
10
  ---
11
+
12
+ # Bulgarian Dictionary 2024
13
+
14
+ <!--- **Paper:**
15
+ - **Point of Contact:** -->
16
+
17
+ ### Dataset Summary
18
+
19
+ This is a dictionary of single-word Bulgarian tokens, tagged by the approproate part-of-speech tag.
20
+
21
+ ### Supported Tasks
22
+
23
+ - `token-classification`: The dataset can be used to train a model for token classification, which consists in applying a class to each token in a sequence.
24
+ -
25
+ ### Languages
26
+
27
+ - `bg`: Only Bulgarian is supported by this dataset.
28
+
29
+ ## Dataset Structure
30
+
31
+ ### Data Instances
32
+
33
+ Each instance contains a `word`, which is a single-worded token. Each of those also comes with a `tag` that is the part-of-speech` tag for that token which can be of 11 pre-defined classes.
34
+
35
+ ```
36
+ ...
37
+ {
38
+ 'word': 'кабел'
39
+ 'tag': 'N'
40
+ },
41
+ {
42
+ 'word': 'зелена'
43
+ 'tag': 'A'
44
+ },
45
+ {
46
+ 'word': 'над'
47
+ 'tag': 'R'
48
+ },
49
+ ...
50
+ ```
51
+
52
+ ### Data Fields
53
+
54
+ - `token`: a string sequence that's the single-worded token
55
+ - `tag`: a capitalised character that represent the part-of-speech tag, it can be one of 11 tags:
56
+ 1) **N**, referring to **n**oun ('съществително име')
57
+ 2) **A**, referring to **a**djective ('прилагателно име')
58
+ 3) **V**, referring to **v**erb ('глагол')
59
+ 4) **D**, referring to a**d**verb ('наречие')
60
+ 5) **P**, referring to **p**ronoun ('местоимение')
61
+ 6) **T**, referring to par**t**icle ('частица')
62
+ 7) **M**, referring to nu**m**eral ('числително име')
63
+ 8) **C**, referring to **c**onjunction ('съюз')
64
+ 9) **I**, referring to **i**nterjection ('междуметие')
65
+ 10) **R**, referring to p**r**eposition ('предлог')
66
+ 11) **H**, referring to **h**ybrid, or named entity ('лични имена, имена на държави, институции, и други имена')
67
+
68
+ The tag system is from the one used by the [BulTreeBankTeam](http://bultreebank.org/en/) described in their[1] [paper](https://www.researchgate.net/publication/316036675_BTB-TR03_BulTreeBank_Morphosyntactic_Tagset).
69
+
70
+ in the event of a word having multiple tags, it's recorded as two separate entries. For example the word 'син' can refer to a (1) noun, as the family relation of a son, or (2) adjective, the property of being blue. Such a word would have two rows:
71
+ - 'син', N
72
+ - 'син', A
73
+
74
+ ### Data Splits
75
+
76
+ No pre-defined split has been applied to the dataset so the developer has the freedom to choose one that suits the task.
77
+
78
+ ## Dataset Creation
79
+
80
+ ### Curation Rationale
81
+
82
+ Main motivations for the creating of this dataset:
83
+ - the official Bulgarian dictionary supplied by the [Bulgarian Academy of Sciences](https://ibl.bas.bg/rbe/) is a great resource, however, it does not supply the user with a collection of valid tokens
84
+ - there is a lack of baseline models for rule-based approaches to POS-tagging, likely due to the lack of resources like this, this aims to encourage people to compare diverse models
85
+
86
+ ### Source Data
87
+
88
+ The source data for this dataset has been collected from:
89
+ - [Rechko - The Bulgarian Dictionary](https://rechnik.chitanka.info)
90
+ - [Slovored](https://slovored.com)
91
+ - [Official Bulgarian Dicrionary from The Bulgarian Academy of Sciences](https://ibl.bas.bg/rbe/)
92
+
93
+ ### Initial Data Collection and Normalization
94
+
95
+ The data collection process was such:
96
+ 1) Collect word data from dictionaries mentioned, along with their part-of-speech tag data.
97
+ 2) Map tag data to pre-determined 11 tags.
98
+ 3) Break up words into single tokens and apply tags to broken up tokens, for example:
99
+ - 'щеше да скачам' gets broken into 'щеше', 'да', 'скачам'
100
+ - 'щеше' and 'да' are already in the dicationary and are tagged as particles, and since the whole sequence is tagged as a verb by the source dictionary, the last token 'скачам' is also tagged as verb
101
+ 4) Remove duplicates.
102
+
103
+ ### Personal and Sensitive Information
104
+
105
+ The source of this dataset is open-source data collections and carry the same amount of risk of personal and/or sensitive information as they do. However, the names and places which are tagged withe name tag refer to general names and are not associated with personal information of any particular individual or organisation.
106
+
107
+ ## Considerations for Using the Data
108
+
109
+ ### Social Impact of Dataset
110
+
111
+ A dataset like this can be beneficial for language learners and developers in the error correction POS-tagging community.
112
+
113
+ ### Discussion of Biases
114
+
115
+ Only the names that were already indexed in the source dictionaries have been used, so the biases in the collection of names and words in the source dictionaries carry over to this one as well.
116
+
117
+ ### Other Known Limitations
118
+
119
+ As language constantly evolves and changes many words, especially novel ones, may be missing from this collection.
120
+
121
+ ## Additional Information
122
+
123
+ <!--
124
+ ### Dataset Curators
125
+
126
+ List the people involved in collecting the dataset and their affiliation(s). If funding information is known, include it here. -->
127
+
128
+ ### Licensing Information
129
+
130
+ The license of the dataset is [apache2.0](https://www.apache.org/licenses/LICENSE-2.0).
131
+
132
+
133
+ [1]: Simov, K., Osenova, P. and Slavcheva, M., (2004). BTB-TR03: BulTree-Bank Morphosyntactic Tagset. BTB-TS version 2.0. Technical report, Bulgarian Academy of Sciences, Sofia, Bulgaria.