word
stringlengths 1
40
| tag
stringclasses 11
values |
---|---|
C-класа | N |
C-класата | N |
G-класа | N |
G-класата | N |
S-образен | A |
S-образна | A |
S-образната | A |
S-образни | A |
S-образните | A |
S-образния | A |
S-образният | A |
S-образно | A |
S-образното | A |
oтъпква | V |
oтъпквай | V |
oтъпквайки | V |
oтъпквайте | V |
oтъпквал | V |
oтъпквала | V |
oтъпквалата | V |
oтъпквали | V |
oтъпквалите | V |
oтъпквалия | V |
oтъпквалият | V |
oтъпквало | V |
oтъпквалото | V |
oтъпквам | V |
oтъпкваме | V |
oтъпкван | V |
oтъпквана | V |
oтъпкваната | V |
oтъпквани | V |
oтъпкваните | V |
oтъпквания | V |
oтъпкваният | V |
oтъпквано | V |
oтъпкваното | V |
oтъпкват | V |
oтъпквате | V |
oтъпквах | V |
oтъпкваха | V |
oтъпквахме | V |
oтъпквахте | V |
oтъпкваш | V |
oтъпкваше | V |
oтъпкващ | V |
oтъпкваща | V |
oтъпкващата | V |
oтъпкващи | V |
oтъпкващите | V |
oтъпкващия | V |
oтъпкващият | V |
oтъпкващо | V |
oтъпкващото | V |
А | C |
Абаджиев | H |
Абаджиева | H |
Абрашев | H |
Абрашева | H |
Августин | H |
Августина | H |
Авджиев | H |
Авджиева | H |
Аврам | H |
Аврамов | H |
Аврамова | H |
Австро-Унгария | N |
Австро-Унгарията | N |
Агов | H |
Агова | H |
Адамов | H |
Адамова | H |
Аделина | H |
Аджемов | H |
Аджемова | H |
Адриан | H |
Адриана | H |
Адрианов | H |
Адрианова | H |
Азманов | H |
Азманова | H |
Айвазов | H |
Айвазова | H |
Айков | H |
Айкова | H |
Айнщайнов | A |
Айнщайнова | A |
Айнщайновата | A |
Айнщайнови | A |
Айнщайновите | A |
Айнщайновия | A |
Айнщайновият | A |
Айнщайново | A |
Айнщайновото | A |
Айфелов | A |
Айфелова | A |
Айфеловата | A |
Айфелови | A |
Айфеловите | A |
Айфеловия | A |
Bulgarian Dictionary 2024
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 tokentag
: a capitalised character that represent the part-of-speech tag, it can be one of 11 tags:- N, referring to noun ('съществително име')
- A, referring to adjective ('прилагателно име')
- V, referring to verb ('глагол')
- D, referring to adverb ('наречие')
- P, referring to pronoun ('местоимение')
- T, referring to particle ('частица')
- M, referring to numeral ('числително име')
- C, referring to conjunction ('съюз')
- I, referring to interjection ('междуметие')
- R, referring to preposition ('предлог')
- H, referring to hybrid, or named entity ('лични имена, имена на държави, институции, и други имена')
The tag system is from the one used by the BulTreeBankTeam described in their[1] paper.
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 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
- Slovored
- Official Bulgarian Dicrionary from The Bulgarian Academy of Sciences
Initial Data Collection and Normalization
The data collection process was such:
- Collect word data from dictionaries mentioned, along with their part-of-speech tag data.
- Map tag data to pre-determined 11 tags.
- 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
- 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
Licensing Information
The license of the dataset is apache2.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.
- Downloads last month
- 41