ruanchaves commited on
Commit
7d6202a
1 Parent(s): 72f6370

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ # For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
3
+ # Doc / guide: https://huggingface.co/docs/hub/datasets-cards
4
+ {}
5
+
6
+ ---
7
+
8
+ # Dataset Card for ReRelEM
9
+
10
+ ## Dataset Description
11
+
12
+ - **Homepage:**
13
+ - **Repository:**
14
+ - **Paper:** [Relation detection between named entities: report of a shared task](https://www.aclweb.org/anthology/W09-1316/)
15
+ - **Leaderboard:**
16
+ - **Point of Contact:**
17
+
18
+ ### Dataset Summary
19
+
20
+ The ReRelEM dataset is designed for the detection and classification of relations between named entities in Portuguese text. It contains 2226 training, 701 validation, and 805 test instances. Each instance contains two sentences with two entities enclosed by the tags [E1] and [E2]. The dataset provides a fourfold relationship classification: identity, included-in, located-in, and other (which is detailed into twenty different relations).
21
+
22
+ ### Supported Tasks and Leaderboards
23
+
24
+ - Relation detection: The primary task of this dataset is to detect and classify relations between named entities.
25
+
26
+ ### Languages
27
+
28
+ - Portuguese
29
+
30
+ ## Dataset Structure
31
+
32
+ ### Data Instances
33
+
34
+ An example data instance from the dataset:
35
+
36
+ - docid: 'cver'
37
+ - sentence1: 'O PRESIDENTE Sarkozy abriu a Conferência de Dadores realizada em Paris com uma frase grandiloquente sobre a necessidade urgente de criar um Estado palestiniano no fim de 2008 . O Presidente ou é mentiroso ou finge-se ignorante, ou as duas coisas. Depois do falhanço esperado da cimeira de Annapolis , um modo de [E2]Condoleezza Rice[/E2] salvar a face e de a Administração | Administração americana e a Europa continuarem a fingir que estão interessadas em resolver o conflito israelo-palestiniano e de lavarem as mãos de tudo o resto, Sarkozy não pode ignorar que o momento para pronunciamentos débeis é o menos adequado. Tony Blair , depois de ter minado todo o processo de paz do Médio Oriente ao ordenar a invasão do Iraque de braço dado com [E1]Bush[/E1] , continua a emitir piedades deste género, e diz que está na altura de resolver o problema e que ele pode ser resolvido. Blair não sabe o que diz.'
38
+ - sentence2: 'nan'
39
+ - label: 'relacao_profissional'
40
+ - same_text: True
41
+
42
+ ### Data Fields
43
+
44
+ - docid: Document ID of both sentences (sentence1 and sentence2)
45
+ - sentence1: The first sentence with an entity span enclosed by the tags [E1] and [/E1]
46
+ - sentence2: The second sentence with an entity span enclosed by the tags [E2] and [/E2]
47
+ - label: The type of relation between the entities
48
+ - same_text: True if both entity spans appear in the same sentence. If True, sentence2 will be empty.
49
+
50
+ ### Data Splits
51
+
52
+ - train: 2226 instances
53
+ - validation: 701 instances
54
+ - test: 805 instances
55
+
56
+ ### Citation Information
57
+
58
+ @inproceedings{freitas2009relation,
59
+ title={Relation detection between named entities: report of a shared task},
60
+ author={Freitas, Cl{\\'a}udia and Santos, Diana and Mota, Cristina and Oliveira, Hugo Gon{\\c{c}}alo and Carvalho, Paula},
61
+ booktitle={Proceedings of the Workshop on Semantic Evaluations: Recent Achievements and Future Directions (SEW-2009)},
62
+ pages={129--137},
63
+ year={2009}
64
+ }