patriziobellan commited on
Commit
014889f
1 Parent(s): 936f268

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -6
README.md CHANGED
@@ -34,8 +34,6 @@ task_ids:
34
  - [Languages](#languages)
35
  - [Dataset Structure](#dataset-structure)
36
  - [Data Instances](#data-instances)
37
- - [Token Classification](#data-instances-token-classification)
38
- - [Relations Extraction](#data-instances-relations-extraction)
39
  - [Data Fields](#data-fields)
40
  - [Data Splits](#data-splits)
41
  - [Dataset Creation](#dataset-creation)
@@ -67,7 +65,9 @@ Abstract. Although there is a long tradition of work in NLP on extracting entiti
67
 
68
  ### Supported Tasks and Leaderboards
69
 
70
- Named Entity Recognition
 
 
71
 
72
  ### Languages
73
 
@@ -78,8 +78,7 @@ English
78
  Test set to beanchmark *Business Process Extraction from Text* approaches.
79
 
80
  ### Data Instances
81
-
82
- #### <a name="data-instances-token-classification"></a>Token Classification
83
 
84
  For each instance, there is a document name representing the name of the document of the Friedrich *et al.* dataset, an integer representing the number of the sentence, a list of tokens representing the words of the sentence instance, and a list of *ner tags* (in IOB2 format) representing the annotation of process elements of the sentence.
85
 
@@ -93,9 +92,10 @@ Below, an example of data instance.
93
  }
94
  ```
95
 
96
- #### <a name="data-instances-relations-extraction"></a>Token Classification
97
 
98
  ### Data Fields
 
99
 
100
  - *document name*: a string used to represent the name of the document.
101
  - *sentence-ID*: an integer (starting from 0) representing the number of the sentence within the document.
@@ -121,6 +121,19 @@ The allowed **ner-tags** are:
121
 
122
  To have a complete explanation of each process element tag please refer to the [research paper](https://arxiv.org/abs/2203.04860) and the [annotation guidelines](https://pdi.fbk.eu/pet/annotation-guidelines-for-process-description.pdf).
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  ### Data Splits
125
 
126
  The data was not splited. It contains the test set only.
 
34
  - [Languages](#languages)
35
  - [Dataset Structure](#dataset-structure)
36
  - [Data Instances](#data-instances)
 
 
37
  - [Data Fields](#data-fields)
38
  - [Data Splits](#data-splits)
39
  - [Dataset Creation](#dataset-creation)
 
65
 
66
  ### Supported Tasks and Leaderboards
67
 
68
+ - Token Classification
69
+ - Named Entity Recognition
70
+ - Relations Extraction
71
 
72
  ### Languages
73
 
 
78
  Test set to beanchmark *Business Process Extraction from Text* approaches.
79
 
80
  ### Data Instances
81
+ #### Token Classification
 
82
 
83
  For each instance, there is a document name representing the name of the document of the Friedrich *et al.* dataset, an integer representing the number of the sentence, a list of tokens representing the words of the sentence instance, and a list of *ner tags* (in IOB2 format) representing the annotation of process elements of the sentence.
84
 
 
92
  }
93
  ```
94
 
95
+ #### Relations Extraction
96
 
97
  ### Data Fields
98
+ #### Token Classification
99
 
100
  - *document name*: a string used to represent the name of the document.
101
  - *sentence-ID*: an integer (starting from 0) representing the number of the sentence within the document.
 
121
 
122
  To have a complete explanation of each process element tag please refer to the [research paper](https://arxiv.org/abs/2203.04860) and the [annotation guidelines](https://pdi.fbk.eu/pet/annotation-guidelines-for-process-description.pdf).
123
 
124
+ ### Relations Extraction
125
+ - *document name*: a string used to represent the name of the document.
126
+ - *tokens*: a list of string representing the words of the document
127
+ - *tokens-IDs*: a list of interger representing the word position within a sentence
128
+ - *sentence-IDs*: a list of interger representing the sentence number for each word of the document
129
+ - *relations*:: a list of document relations
130
+ - *source-head-sentence-ID*: a list of sentence ID of the source head ,
131
+ - *source-head-word-ID*: a list of
132
+ - *relation-type*: a list of
133
+ - *target-head-sentence-ID*: a list of
134
+ - *target-head-word-ID*: a list of
135
+
136
+
137
  ### Data Splits
138
 
139
  The data was not splited. It contains the test set only.