patriziobellan commited on
Commit
1dfac24
1 Parent(s): cb13d61

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -7
README.md CHANGED
@@ -15,7 +15,6 @@ source_datasets:
15
  [Friedrich et al. original dataset]
16
  task_categories:
17
  - token-classification
18
- - other
19
  task_ids:
20
  - named-entity-recognition
21
 
@@ -50,18 +49,16 @@ task_ids:
50
  ## Dataset Description
51
 
52
  - **Homepage:** https://pdi.fbk.eu/pet-dataset/
53
- - **Repository:**
54
  - **Paper:** https://arxiv.org/abs/2203.04860
55
- - **Leaderboard:**
56
  - **Point of Contact:** [email protected]
57
 
58
  ### Dataset Summary
59
 
60
- [More Information Needed]
61
 
62
  ### Supported Tasks and Leaderboards
63
 
64
- Named Entity Recognition, Relation Extraction
65
 
66
  ### Languages
67
 
@@ -69,20 +66,53 @@ English
69
 
70
  ## Dataset Structure
71
 
 
 
72
  ### Data Instances
73
 
74
  [More Information Needed]
75
 
76
  ### Data Fields
77
 
78
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
 
80
  ### Data Splits
81
 
82
- Testing Dataset only
83
 
84
  ## Dataset Creation
85
 
 
 
 
 
 
 
 
 
 
 
86
  ### Curation Rationale
87
 
88
  [More Information Needed]
 
15
  [Friedrich et al. original dataset]
16
  task_categories:
17
  - token-classification
 
18
  task_ids:
19
  - named-entity-recognition
20
 
 
49
  ## Dataset Description
50
 
51
  - **Homepage:** https://pdi.fbk.eu/pet-dataset/
 
52
  - **Paper:** https://arxiv.org/abs/2203.04860
 
53
  - **Point of Contact:** [email protected]
54
 
55
  ### Dataset Summary
56
 
57
+ Abstract. Although there is a long tradition of work in NLP on extracting entities and relations from text, to date there exists little work on the acquisition of business processes from unstructured data such as textual corpora of process descriptions. With this work we aim at filling this gap and establishing the first steps towards bridging data-driven information extraction methodologies from Natural Language Processing and the model-based formalization that is aimed from Business Process Management. For this, we develop the first corpus of business process descriptions annotated with activities, gateways, actors and flow information. We present our new resource, including a detailed overview of the annotation schema and guidelines, as well as a variety of baselines to benchmark the difficulty and challenges of business process extraction from text.
58
 
59
  ### Supported Tasks and Leaderboards
60
 
61
+ Named Entity Recognition
62
 
63
  ### Languages
64
 
 
66
 
67
  ## Dataset Structure
68
 
69
+ Test set to beanchmark 'Process Extraction from Text' approaches.
70
+
71
  ### Data Instances
72
 
73
  [More Information Needed]
74
 
75
  ### Data Fields
76
 
77
+ 'document name'
78
+
79
+ 'sentence-ID'
80
+
81
+ 'tokens'
82
+
83
+ 'ner-tags':
84
+ "O",
85
+ "B-Actor",
86
+ "I-Actor",
87
+ "B-Activity",
88
+ "I-Activity",
89
+ "B-Activity Data",
90
+ "I-Activity Data",
91
+ "B-Further Specification",
92
+ "I-Further Specification",
93
+ "B-XOR Gateway",
94
+ "I-XOR Gateway",
95
+ "B-Condition Specification",
96
+ "I-Condition Specification",
97
+ "B-AND Gateway",
98
+ "I-AND Gateway",
99
 
100
  ### Data Splits
101
 
102
+ The data was not splited. It contains the test set only.
103
 
104
  ## Dataset Creation
105
 
106
+ The dataset construction process has been split in five main phases:
107
+ 1. Text pre-processing. As the first operation, we check the content of each document and we tokenized it. This initial check was necessary since some of the original texts were automatically translated into English by the authors of the dataset. The translations were never validated, indeed, several errors have been found and fixed.
108
+
109
+ 2. Text Annotation. Each text has been annotated by using the guidelines (https://pdi.fbk.eu/pet/annotation-guidelines-for-process-description.pdf). The team was composed by five annotators with high expertise in BPMN. Each document has been assigned to three experts that were in change of identifying all the elements and flows with each document. In this phase, we used the the Inception tool to support annotators.
110
+ 3. Automatic annotation fixing. After the second phase, we ran an automatic procedure relying on a rule-based script to automatically fix annotations that were not compliant with the guidelines. For example, if a modal verb was erroneously included in the annotation of an Activity, the procedure removed it from the annotation. Another example is the missing of the article within an annotation related to an Actor. In this case, the script included it in the annotation. This phase allowed to remove possible annotation errors and to obtain annotations compliant with the guidelines.
111
+
112
+ 4. Agreement Computation. Here, we computed, on the annotation provided by the experts, the agreement scores for each process element and for each relation between process elements pair adopting the methodology proposed in (George Hripcsak and Adam S. Rothschild. Technical brief: Agreement, the f-measure, and reliability in information retrieval. J. Am. Medical Informatics Assoc., 12(3):296–298, 2005.). We measured the agreement in terms of the F1 measure because, besides being straightforward to calculate, it is directly interpretable. Note that chance-corrected measures like κ approach the F1-measure as the number of cases that raters agree are negative grows. By following such a methodology, an annotation was considered in agreement among the experts if and only if they capture the same span of words and they assign the same process element tag to the annotation.
113
+
114
+ 5. Reconciliation. The last phase consisted of the mitigation of disagreements within the annotations provided by the experts. The aim of this phase is to obtain a shared and agreed set of gold standard annotations on each text for both entities and relations. Such entities also enable the generation of the related full-connected process model flow that can be rendered by using, but not limited to, a BPMN diagram. During this last phase, among the 47 documents originally included into the dataset, 2 of them were discarded. These texts were not fully annotated by the annotators since they were not be able to completely understand which process elements were actually included in some specific parts of the text. For this reason, the final size of the dataset is 45 textual descriptions of the corresponding process models together with their annotations.
115
+
116
  ### Curation Rationale
117
 
118
  [More Information Needed]