Datasets:
Fjalori Elektronik i Shqipes
Albanian dictionary dataset with 36,407 entries extracted from the Fjalori i Gjuhës Shqipe (Dictionary of the Albanian Language), covering the full vocabulary of standard modern Albanian.
Dataset Structure
Each row represents one dictionary entry with the following fields:
| Column | Type | Description |
|---|---|---|
word |
string | Headword (e.g. ABACI, BUKUR) |
full_header |
string | Full header as it appears in the dictionary (word + grammatical labels) |
syntactic_tag |
string | Part-of-speech / syntactic category (see tag reference below) |
sem_tag_1 |
string | Primary domain/semantic tag |
sem_tag_2 |
string | Secondary domain tag (if any) |
sem_tag_3 |
string | Tertiary domain tag (if any) |
definition |
string | Full definition text (all senses joined) |
senses |
list[string] | Individual numbered senses as a list |
num_senses |
int | Number of distinct senses |
Key Statistics
- Total entries: 36,407
- Entries with POS tags: 35,883
- Entries with multiple senses: 15,220
- Maximum senses for one word: 21
- Average senses per word: 1.16
Syntactic Tags (Tag Sin)
| Tag | Meaning | Count |
|---|---|---|
f. |
gj. femërore (feminine noun) | ~9,949 |
m. |
gj. mashkullore (masculine noun) | ~9,522 |
mb. |
mbiemër (adjective) | ~7,878 |
kal. |
folje kalimtare (transitive verb) | ~2,939 |
vetv. |
folje vetvetoro (reflexive verb) | ~2,236 |
ndajf. |
ndajfolje (adverb) | ~1,286 |
jokal. |
folje jokalimtare (intransitive verb) | ~640 |
pasth. |
pasthirrmë (interjection) | ~76 |
lidh. |
lidhëz (conjunction) | ~60 |
pj. |
pjesëz (particle) | ~43 |
num. |
numëror (numeral) | ~56 |
parafj. |
parafjalë (preposition) | ~23 |
Semantic/Domain Tags (Tag Sem)
Common domain tags include: bised. (colloquial), libr. (literary), vjet. (archaic), krahin. (regional), bot. (botany), zool. (zoology), mjek. (medicine), hist. (history), gjuh. (linguistics), drejt. (law), usht. (military), fet. (religious), kim. (chemistry), fiz. (physics), mat. (mathematics), and many more.
Usage
from datasets import load_dataset
ds = load_dataset("akadriu/fjalori-shqip")
print(ds["train"][0])
Example Entry
{
"word": "ABACI",
"full_header": "ABACI f. sh. fet.",
"syntactic_tag": "f.",
"sem_tag_1": "fet.",
"sem_tag_2": null,
"sem_tag_3": null,
"definition": "1. Manastir ose kuvend i pasur katolik, që drejtohet nga një abat... 2. Treva ku shtrihet pushteti fetar i abatit.",
"senses": [
"1. Manastir ose kuvend i pasur katolik, që drejtohet nga një abat; ndërtesat e këtij manastiri.",
"2. Treva ku shtrihet pushteti fetar i abatit."
],
"num_senses": 2
}
Source
Extracted and structured from the Fjalori i Gjuhës Shqipe, the authoritative reference dictionary of the Albanian language published by the Academy of Sciences of Albania.
- Downloads last month
- 15