Datasets:
cjvt
/

License:
matejklemen commited on
Commit
69be0d5
·
1 Parent(s): 0a70ad6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +102 -0
README.md CHANGED
@@ -1,3 +1,105 @@
1
  ---
2
  license: cc-by-sa-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-4.0
3
  ---
4
+
5
+ # Dataset Card for Sloleks 3
6
+
7
+ **Important**: this is a minimal script for processing Sloleks 3. Most notably, some word form properties (accentuation, pronounciation) and frequencies are not exposed here.
8
+ Please see the [CLARIN repository](https://www.clarin.si/repository/xmlui/handle/11356/1745) for full details on what the dataset contains, and open an issue or a pull request if you require some other information from the raw data.
9
+
10
+
11
+ ### Dataset Summary
12
+
13
+ Sloleks is a reference morphological lexicon of Slovene that was developed to be used in various NLP applications and language manuals.
14
+ It contains Slovene lemmas, their inflected or derivative word forms and the corresponding grammatical description.
15
+ In addition to the approx. 100,000 entries already available in [Sloleks 2.0](http://hdl.handle.net/11356/1230), Sloleks 3.0 contains an additional
16
+ cca. 265,000 newly generated entries from the most frequent lemmas in [Gigafida 2.0](http://hdl.handle.net/11356/1320) not yet included in previous versions of Sloleks.
17
+ For verbs, adjectives, adverbs, and common nouns, the lemmas were checked manually by three annotators and included in Sloleks only if confirmed as legitimate by at
18
+ least one annotator. No manual checking was performed on proper nouns. Lemmatization rules, part-of-speech categorization and the set of feature-value pairs follow the
19
+ [MULTEXT-East morphosyntactic specifications for Slovenian](https://nl.ijs.si/ME/V6/msd/html/msd-sl.html).
20
+
21
+ ### Supported Tasks and Leaderboards
22
+
23
+ Other (the data is a knowledge base - lexicon).
24
+
25
+ ### Languages
26
+
27
+ Slovenian.
28
+
29
+ ## Dataset Structure
30
+
31
+ ### Data Instances
32
+
33
+ Entry for the verb `absorbirati` (English: *to absorb*):
34
+ ```
35
+ {
36
+ 'headword_lemma': 'absorbirati',
37
+ 'pos': 'verb',
38
+ 'lex_unit': {'id': 'LE_a293f9ab871299f116dff2cc1421367a', 'form': 'absorbirati', 'key': 'G_absorbirati', 'type': 'single'},
39
+ 'word_forms':
40
+ [
41
+ {'forms': ['absorbirati'], 'msd': 'Ggvn'},
42
+ {'forms': ['absorbirat'], 'msd': 'Ggvm'},
43
+ {'forms': ['absorbiral'], 'msd': 'Ggvd-em'},
44
+ {'forms': ['absorbirala'], 'msd': 'Ggvd-dm'},
45
+ {'forms': ['absorbirali'], 'msd': 'Ggvd-mm'},
46
+ {'forms': ['absorbirala'], 'msd': 'Ggvd-ez'},
47
+ {'forms': ['absorbirali'], 'msd': 'Ggvd-dz'},
48
+ {'forms': ['absorbirale'], 'msd': 'Ggvd-mz'},
49
+ {'forms': ['absorbiralo'], 'msd': 'Ggvd-es'},
50
+ {'forms': ['absorbirali'], 'msd': 'Ggvd-ds'},
51
+ {'forms': ['absorbirala'], 'msd': 'Ggvd-ms'},
52
+ {'forms': ['absorbiram'], 'msd': 'Ggvspe'},
53
+ {'forms': ['absorbiraš'], 'msd': 'Ggvsde'},
54
+ {'forms': ['absorbira'], 'msd': 'Ggvste'},
55
+ {'forms': ['absorbirava'], 'msd': 'Ggvspd'},
56
+ {'forms': ['absorbirata'], 'msd': 'Ggvsdd'},
57
+ {'forms': ['absorbirata'], 'msd': 'Ggvstd'},
58
+ {'forms': ['absorbiramo'], 'msd': 'Ggvspm'},
59
+ {'forms': ['absorbirate'], 'msd': 'Ggvsdm'},
60
+ {'forms': ['absorbirajo'], 'msd': 'Ggvstm'},
61
+ {'forms': ['absorbirajva'], 'msd': 'Ggvvpd'},
62
+ {'forms': ['absorbirajmo'], 'msd': 'Ggvvpm'},
63
+ {'forms': ['absorbiraj'], 'msd': 'Ggvvde'},
64
+ {'forms': ['absorbirajta'], 'msd': 'Ggvvdd'},
65
+ {'forms': ['absorbirajte'], 'msd': 'Ggvvdm'}
66
+ ],
67
+ 'is_manually_checked': True
68
+ }
69
+ ```
70
+
71
+ ### Data Fields
72
+
73
+ - `headword_lemma`: lemma of the headword;
74
+ - `pos`: coarse-grained part-of-speech tag (one of `{"noun", "verb", "adjective", "adverb", "pronoun", "numeral", "preposition", "conjunction", "particle", "interjection", "abbreviation", "residual"}`);
75
+ - `lex_unit`: properties of the lexical unit corresponding to the headword (`id`, `form`, `key` and `type`);
76
+ - `word_forms`: forms of the headword, each with its own list of possible forms and the morphosyntactic description of the form;
77
+ - `is_manually_checked`: whether the headword was manually validated or not.
78
+
79
+
80
+ ## Additional Information
81
+
82
+ ### Dataset Curators
83
+
84
+ Jaka Čibej; et al. (please see http://hdl.handle.net/11356/1745 for the full list).
85
+
86
+ ### Licensing Information
87
+
88
+ CC BY-SA 4.0.
89
+
90
+ ### Citation Information
91
+
92
+ ```
93
+ @misc{sloleks3,
94
+ title = {Morphological lexicon Sloleks 3.0},
95
+ author = {{\v C}ibej, Jaka and Gantar, Kaja and Dobrovoljc, Kaja and Krek, Simon and Holozan, Peter and Erjavec, Toma{\v z} and Romih, Miro and Arhar Holdt, {\v S}pela and Krsnik, Luka and Robnik-{\v S}ikonja, Marko},
96
+ url = {http://hdl.handle.net/11356/1745},
97
+ note = {Slovenian language resource repository {CLARIN}.{SI}},
98
+ copyright = {Creative Commons - Attribution-{ShareAlike} 4.0 International ({CC} {BY}-{SA} 4.0)},
99
+ year = {2022}
100
+ }
101
+ ```
102
+
103
+ ### Contributions
104
+
105
+ Thanks to [@matejklemen](https://github.com/matejklemen) for adding this dataset.