File size: 5,372 Bytes
c7e4999 b6d9f39 c7e4999 b6d9f39 |
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
---
license: apache-2.0
task_categories:
- token-classification
language:
- bg
pretty_name: Bulgarian Dictionary 2024
size_categories:
- 1M<n<10M
---
# Bulgarian Dictionary 2024
<!--- **Paper:**
- **Point of Contact:** -->
### Dataset Summary
This is a dictionary of single-word Bulgarian tokens, tagged by the approproate part-of-speech tag.
### Supported Tasks
- `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.
-
### Languages
- `bg`: Only Bulgarian is supported by this dataset.
## Dataset Structure
### Data Instances
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.
```
...
{
'word': 'кабел'
'tag': 'N'
},
{
'word': 'зелена'
'tag': 'A'
},
{
'word': 'над'
'tag': 'R'
},
...
```
### Data Fields
- `token`: a string sequence that's the single-worded token
- `tag`: a capitalised character that represent the part-of-speech tag, it can be one of 11 tags:
1) **N**, referring to **n**oun ('съществително име')
2) **A**, referring to **a**djective ('прилагателно име')
3) **V**, referring to **v**erb ('глагол')
4) **D**, referring to a**d**verb ('наречие')
5) **P**, referring to **p**ronoun ('местоимение')
6) **T**, referring to par**t**icle ('частица')
7) **M**, referring to nu**m**eral ('числително име')
8) **C**, referring to **c**onjunction ('съюз')
9) **I**, referring to **i**nterjection ('междуметие')
10) **R**, referring to p**r**eposition ('предлог')
11) **H**, referring to **h**ybrid, or named entity ('лични имена, имена на държави, институции, и други имена')
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).
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:
- 'син', N
- 'син', A
### Data Splits
No pre-defined split has been applied to the dataset so the developer has the freedom to choose one that suits the task.
## Dataset Creation
### Curation Rationale
Main motivations for the creating of this dataset:
- 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
- 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
### Source Data
The source data for this dataset has been collected from:
- [Rechko - The Bulgarian Dictionary](https://rechnik.chitanka.info)
- [Slovored](https://slovored.com)
- [Official Bulgarian Dicrionary from The Bulgarian Academy of Sciences](https://ibl.bas.bg/rbe/)
### Initial Data Collection and Normalization
The data collection process was such:
1) Collect word data from dictionaries mentioned, along with their part-of-speech tag data.
2) Map tag data to pre-determined 11 tags.
3) Break up words into single tokens and apply tags to broken up tokens, for example:
- 'щеше да скачам' gets broken into 'щеше', 'да', 'скачам'
- 'щеше' 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
4) Remove duplicates.
### Personal and Sensitive Information
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.
## Considerations for Using the Data
### Social Impact of Dataset
A dataset like this can be beneficial for language learners and developers in the error correction POS-tagging community.
### Discussion of Biases
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.
### Other Known Limitations
As language constantly evolves and changes many words, especially novel ones, may be missing from this collection.
## Additional Information
<!--
### Dataset Curators
List the people involved in collecting the dataset and their affiliation(s). If funding information is known, include it here. -->
### Licensing Information
The license of the dataset is [apache2.0](https://www.apache.org/licenses/LICENSE-2.0).
[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. |