RuiMao1988 commited on
Commit
b776219
1 Parent(s): 57889d4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: cc-by-sa-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-3.0
3
+ ---
4
+
5
+ # Dataset Card for VMC-P
6
+
7
+ ## Dataset Summary
8
+
9
+ VMC-P (VU Amsterdam Metaphor Corpus with Paraphrases) is a dataset, developed for end-to-end metaphor interpretation. It consists of 10,716 textual sequences (6,653 sequences for training , 2,063 sequences for validation, and 2,000 sequences for testing) with manual annotations on the token level. The labels indicate the metaphricity (e.g., metaphor or literal) and the paraphrases of a metaphorical lexical units (e.g., single- and multi-word expressions). The data were sourced from [VU Amsterdam Metaphor Corpus](http://www.vismet.org/metcor/documentation/home.html), including genres, e.g., fiction, news, academic and conversational text.
10
+
11
+ ## Language
12
+
13
+ English
14
+
15
+ ## Dataset Structure
16
+
17
+ An example sentence and its labels from VMC-P is shown below:
18
+
19
+ ```
20
+ {
21
+ 'ID': 'trn_976',
22
+ 'doc_ID': 'ac2-fragment06',
23
+ 'sent_ID': '1465',
24
+ 'sent': "‘ Do n't they realise they 're playing with political dynamite ?",
25
+ 'metaphor_index_list': [[7, 8], [10]],
26
+ 'pos_list': ['underestimating', 'risks'],
27
+ 'neg_list': [['exploiting', 'competing', 'trifling', 'dallying', 'exhausting', 'deploying', 'wagering', 'taking on', 'flirting', 'simulating', 're-creating', 'travelling', 'using', 'roleplaying', 'wreaking', 'manipulating', 'considering', 'toying', 'acting as', 'moving', 'discharging', 'running', 'playacting', 'bringing', 'gambling', 'working', 'making', 'performing', 'recreating', 'spiel', 'sounding', 'representing', 'acting', 'meeting', 'encountering', 'betting', 'diddling', 'making for', 'hitting', 'fiddling', 'take foolish risk', 'having', 'end up benefit their overlord', 'trying', 'producing', 'contributing'], ['explosive compound', 'explode']],
28
+ 'lemma': "' do not they realise they be play with political dynamite ?",
29
+ 'pos_tags': ['``', 'VB', 'RB', 'PRP', 'VB', 'PRP', 'VBP', 'VBG', 'IN', 'JJ', 'NN', '.'],
30
+ 'open_class': ['O', 'VERB', 'ADV', 'O', 'VERB', 'O', 'VERB', 'VERB', 'O', 'ADJ', 'NOUN', 'O'],
31
+ 'genre': 'fiction'
32
+ }
33
+ ```
34
+
35
+ ## Data Fields
36
+
37
+ - `ID`: An unique index in the VMC-P dataset
38
+ - `doc_ID` and `sent_ID`: The indices were inherited from VU Amsterdam Metaphor Corpus.
39
+ - `sent`: The input sentence with tokenization.
40
+ - `metaphor_index_list`: The indices indicate the metaphorical tokens in the given sentence.
41
+ - `pos_list`: The correct paraphrases (ground truth labels).
42
+ - `neg_list`: The incorrect paraphrases (negative samples for contrastive learning paraphrases for metaphors).
43
+ - `lemma`: The lemmatized input sentence.
44
+ - `pos_tags`: Parts-of-speech tags of tokens in the input sentence, following the Universal Dependencies scheme.
45
+ - `open_class`: Open-class word labels, including verb, noun, adjective, adverb and others.
46
+ - `genre`: The genre indicates the origin of the text, including fiction, news, academic, conversation.
47
+
48
+
49
+ ## Licensing Information
50
+
51
+ [Creative Commons Attribution-ShareAlike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/)
52
+
53
+ ## Citation Information
54
+
55
+ ```
56
+ @article{mao2024metapro2,
57
+ title={{MetaPro} 2.0: {Computational} Metaphor Processing on the Effectiveness of Anomalous Language Modeling},
58
+ author={Mao, Rui and He, Kai and Ong, Claudia Beth and Liu, Qian and Cambria, Erik},
59
+ booktitle={Findings of the Association for Computational Linguistics: ACL},
60
+ year={2024},
61
+ address={Bangkok, Thailand},
62
+ publisher={Association for Computational Linguistics}
63
+ }
64
+ ```