matejklemen commited on
Commit
64562be
1 Parent(s): b70a641

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +117 -1
README.md CHANGED
@@ -1,3 +1,119 @@
1
  ---
2
- license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ - expert-generated
5
+ language:
6
+ - sl
7
+ language_creators:
8
+ - machine-generated
9
+ - found
10
+ license:
11
+ - cc-by-sa-4.0
12
+ multilinguality:
13
+ - monolingual
14
+ pretty_name: Semantic lexicon of Slovene sloWNet
15
+ size_categories:
16
+ - 100K<n<1M
17
+ source_datasets: []
18
+ tags:
19
+ - slownet
20
+ - wordnet
21
+ - pwn
22
+ task_categories:
23
+ - other
24
+ task_ids: []
25
  ---
26
+
27
+ # Dataset Card for SloWNet
28
+
29
+ ### Dataset Summary
30
+
31
+ sloWNet is the Slovene WordNet developed in the expand approach: it contains the complete Princeton WordNet 3.0 and over 70 000 Slovene literals. These literals have been added automatically using different types of existing resources, such as bilingual dictionaries, parallel corpora and Wikipedia. 33 000 literals have been subsequently hand-validated.
32
+
33
+ For a detailed description of the data, please see the paper Fišer et al. (2012).
34
+
35
+ ### Supported Tasks and Leaderboards
36
+
37
+ Other (the data is a knowledge base).
38
+
39
+ ### Languages
40
+
41
+ Slovenian.
42
+
43
+ ## Dataset Structure
44
+
45
+ ### Data Instances
46
+
47
+ Each synset is stored in its own instance. The following instance represents a synset containing the English synonyms `{'able'}` and Slovene synonyms `{'sposoben', 'zmožen'}`:
48
+ ```
49
+ {
50
+ 'id': 'eng-30-00001740-a',
51
+ 'pos': 'a',
52
+ 'bcs': 3,
53
+ 'en_synonyms': {
54
+ 'words': ['able'],
55
+ 'senses': [1],
56
+ 'pwnids': ['able%3:00:00::']
57
+ },
58
+ 'sl_synonyms': {
59
+ 'words': ['sposoben', 'zmožen'],
60
+ 'is_validated': [False, False]
61
+ },
62
+ 'en_def': "(usually followed by `to') having the necessary means or skill or know-how or authority to do something",
63
+ 'sl_def': 'N/A',
64
+ 'en_usages': [
65
+ 'able to swim',
66
+ 'she was able to program her computer',
67
+ 'we were at last able to buy a car',
68
+ 'able to get a grant for the project'
69
+ ],
70
+ 'sl_usages': [],
71
+ 'ilrs': {
72
+ 'types': ['near_antonym', 'be_in_state', 'be_in_state', 'eng_derivative', 'eng_derivative'],
73
+ 'id_synsets': ['eng-30-00002098-a', 'eng-30-05200169-n', 'eng-30-05616246-n', 'eng-30-05200169-n', 'eng-30-05616246-n']
74
+ },
75
+ 'semeval07_cluster': 'able',
76
+ 'domains': ['quality']
77
+ }
78
+ ```
79
+
80
+ ### Data Fields
81
+
82
+ - `id`: a string ID of the synset;
83
+ - `pos`: part of speech tag of the synset;
84
+ - `bcs`: Base Concept Set index (`-1` if not present);
85
+ - `en_synonyms`: the English synonyms in the synset - synonym `i` is described with its form (`words[i]`), sense (`senses[i]`), and Princeton WordNet ID (`pwnids[i]`);
86
+ - `sl_synonyms`: the Slovene synonyms in the synset - synonym `i` is described with its form (`words[i]`) and a flag marking if its correctness has been manually validated (`is_validated[i]`);
87
+ - `en_def`: the English definition (`"N/A"` if not present);
88
+ - `sl_def`: the Slovene definition (`"N/A"` if not present);
89
+ - `en_usages`: the English examples of usage;
90
+ - `sl_usages`: the Slovene examples of usage;
91
+ - `ilrs`: internal language relations - relation `i` is described by its type (`types[i]`) and the target synset (`id_synsets[i]`);
92
+ - `semeval07_cluster`: string cluster (`"N/A"` if not present);
93
+ - `domains`: domains of the synset.
94
+
95
+ ## Additional Information
96
+
97
+ ### Dataset Curators
98
+
99
+ Darja Fišer.
100
+
101
+ ### Licensing Information
102
+
103
+ CC BY-SA 4.0
104
+
105
+ ### Citation Information
106
+
107
+ ```
108
+ @inproceedings{fiser2012slownet,
109
+ title={sloWNet 3.0: development, extension and cleaning},
110
+ author={Fi{\v{s}}er, Darja and Novak, Jernej and Erjavec, Toma{\v{z}}},
111
+ booktitle={Proceedings of 6th International Global Wordnet Conference (GWC 2012)},
112
+ pages={113--117},
113
+ year={2012}
114
+ }
115
+ ```
116
+
117
+ ### Contributions
118
+
119
+ Thanks to [@matejklemen](https://github.com/matejklemen) for adding this dataset.