matejklemen commited on
Commit
200df2e
1 Parent(s): b877ca4

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +103 -1
README.md CHANGED
@@ -1,3 +1,105 @@
1
  ---
2
- license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language:
5
+ - sl
6
+ language_creators:
7
+ - found
8
+ license:
9
+ - cc-by-nc-sa-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: KOMET
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets: []
16
+ tags:
17
+ - metaphor detection
18
+ - mip
19
+ - mipvu
20
+ task_categories:
21
+ - token-classification
22
+ task_ids:
23
+ - token-classification-other-metaphor-classification
24
+ - token-classification-other-metaphor-frame-classification
25
  ---
26
+
27
+ # Dataset Card for KOMET
28
+
29
+ ### Dataset Summary
30
+
31
+ KOMET 1.0 is a hand-annotated Slovenian corpus of metaphorical expressions which contains about 200 000 words (across 13 963 sentences) from Slovene journalistic, fiction and online texts.
32
+
33
+ ### Supported Tasks and Leaderboards
34
+
35
+ Metaphor detection, metaphor type classification, metaphor frame classification.
36
+
37
+ ### Languages
38
+
39
+ Slovenian.
40
+
41
+ ## Dataset Structure
42
+
43
+ ### Data Instances
44
+
45
+ A sample instance from the dataset:
46
+ ```
47
+ {
48
+ 'document_name': 'komet49.div.xml',
49
+ 'idx': 60,
50
+ 'idx_paragraph': 24,
51
+ 'idx_sentence': 1,
52
+ 'sentence_words': ['Morda', 'zato', ',', 'ker', 'resnice', 'nočete', 'sprejeti', ',', 'in', 'nadaljujete', 'po', 'svoje', '.'],
53
+ 'met_type': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'MRWi', 'O', 'O'],
54
+ 'met_frame': ['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'adverbial_phrase/spatial_orientation', 'adverbial_phrase', 'O']
55
+ }
56
+ ```
57
+
58
+ The sentence comes from the document `komet49.div.xml`, is the 60th sentence in the document and is the 1st sentence inside the 24th paragraph in the document.
59
+ The word "po" is annotated as an indirect metaphor-related word (`MRWi`).
60
+ The phrase "po svoje" is annotated with the frame "adverbial phrase" and the word "po" is additionally annotated with the frame "spatial_orientation".
61
+
62
+ ### Data Fields
63
+
64
+ - `document_name`: a string containing the name of the document in which the sentence appears;
65
+ - `idx`: a uint32 containing the index of the sentence inside its document;
66
+ - `idx_paragraph`: a uint32 containing the index of the paragraph in which the sentence appears;
67
+ - `idx_sentence`: a uint32 containing the index of the sentence inside its paragraph;
68
+ containing the consecutive number of the paragraph inside the current news article;
69
+ - `sentence_words`: words in the sentence;
70
+ - `met_type`: metaphor type for each word in the sentence;
71
+ - `met_frame`: metaphor frame for each word in the sentence, representing the source domain of the conceptual metaphor. If a word is annotated with multiple frames, they are separated with a "/".
72
+
73
+ ## Dataset Creation
74
+
75
+ The texts were sampled from the Corpus of Slovene youth literature MAKS (journalistic, fiction and online texts).
76
+ Initially, words whose meaning deviates from their primary meaning in the Dictionary of the standard Slovene Language were marked as metaphors.
77
+ Then, their type was determined, i.e. whether they are an indirect (MRWi), direct (MRWd), borderline (WIDLI) metaphor or a metaphor flag (signal, marker; MFlag).
78
+
79
+ For more information, please check out the paper (which is in Slovenian language) or contact the dataset author
80
+
81
+ ## Additional Information
82
+
83
+ ### Dataset Curators
84
+
85
+ Špela Antloga.
86
+
87
+ ### Licensing Information
88
+
89
+ CC BY-NC-SA 4.0
90
+
91
+ ### Citation Information
92
+
93
+ ```
94
+ @InProceedings{antloga2020komet,
95
+ title = {Korpus metafor KOMET 1.0},
96
+ author={Antloga, \v{S}pela},
97
+ booktitle={Proceedings of the Conference on Language Technologies and Digital Humanities (Student abstracts)},
98
+ year={2020},
99
+ pages={167-170}
100
+ }
101
+ ```
102
+
103
+ ### Contributions
104
+
105
+ Thanks to [@matejklemen](https://github.com/matejklemen) for adding this dataset.