-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgSpeech.graphml.xml
More file actions
53 lines (46 loc) · 1.9 KB
/
Copy pathgSpeech.graphml.xml
File metadata and controls
53 lines (46 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<key id="d0" for="node" attr.name="dialogue" attr.type="string"/>
<key id="d1" for="edge" attr.name="spoken" attr.type="string"/>
<graph id="G" edgedefault="directed"><node id="n1"><data key="d0">root</data></node>
<node id="n2"><data key="d0">Hello! My name is Nehvy. I am a turtlebot, so I am very slow. Please start speaking 2 seconds after I finish talking. And try to speak in front of me. I can either deliver items or guide you to a room. What do you want me to do?</data></node>
<edge source="n1" target="n2">
<data key="d1">hi</data>
</edge>
<edge source="n1" target="n2">
<data key="d1">hello</data>
</edge>
<edge source="n1" target="n2">
<data key="d1">hey</data>
</edge>
<edge source="n1" target="n2">
<data key="d1">greetings</data>
</edge>
<node id="n3"><data key="d0">Okay. Which room should I go? I can go to room 201 to 207.</data></node>
<edge source="n2" target="n3">
<data key="d1">deliver</data>
</edge>
<edge source="n2" target="n3">
<data key="d1">guide</data>
</edge>
<edge source="n3" target="n4">
<data key="d1">room</data>
</edge>
<node id="n4"><data key="d0">So you want me to # to room number *. Is this information correct?</data></node>
<edge source="n4" target="n5">
<data key="d1">yes</data>
</edge>
<edge source="n4" target="n6">
<data key="d1">no</data>
</edge>
<node id="n5"><data key="d0">Hold on! Let me calculate the path. Here I go!</data></node>
<node id="n6"><data key="d0">What would you like me to change? The task? Or the room number?</data></node>
<edge source="n6" target="n4">
<data key="d1">task</data>
</edge>
<edge source="n6" target="n3">
<data key="d1">room</data>
</edge></graph></graphml>