pritamdeka commited on
Commit
f6f0b7a
·
verified ·
1 Parent(s): 84fc9f4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -6
README.md CHANGED
@@ -86,12 +86,41 @@ Replace these after dataset upload:
86
 
87
 
88
  ### Ground Truth BPMN (excerpt)
89
- ```xml
90
- <definitions ... >
91
- <process id="Process_1">
92
- ...
93
- </process>
94
- </definitions>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  ```
96
 
97
  ---
 
86
 
87
 
88
  ### Ground Truth BPMN (excerpt)
89
+ ```<?xml version='1.0' encoding='UTF-8'?>
90
+ <bpmn:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
91
+ xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL"
92
+ xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"
93
+ xmlns:dc="http://www.omg.org/spec/DD/20100524/DC"
94
+ id="Definitions_1"
95
+ targetNamespace="http://bpmn.io/schema/bpmn">
96
+
97
+ <bpmn:process id="Process_1" isExecutable="false">
98
+
99
+ <bpmn:startEvent id="StartEvent_1">
100
+ <bpmn:outgoing>Flow_0abcd12</bpmn:outgoing>
101
+ </bpmn:startEvent>
102
+
103
+ <bpmn:task id="Task_1" name="Receive Order">
104
+ <bpmn:incoming>Flow_0abcd12</bpmn:incoming>
105
+ <bpmn:outgoing>Flow_0efgh34</bpmn:outgoing>
106
+ </bpmn:task>
107
+
108
+ <bpmn:exclusiveGateway id="Gateway_1">
109
+ <bpmn:incoming>Flow_0efgh34</bpmn:incoming>
110
+ <bpmn:outgoing>Flow_0ijkl56</bpmn:outgoing>
111
+ <bpmn:outgoing>Flow_0mnop78</bpmn:outgoing>
112
+ </bpmn:exclusiveGateway>
113
+
114
+ <bpmn:task id="Task_2" name="Validate Order">
115
+ <bpmn:incoming>Flow_0ijkl56</bpmn:incoming>
116
+ <bpmn:outgoing>Flow_0qrst90</bpmn:outgoing>
117
+ </bpmn:task>
118
+
119
+ ...
120
+
121
+ </bpmndi:BPMNDiagram>
122
+ </bpmn:definitions>
123
+
124
  ```
125
 
126
  ---