-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.dot
47 lines (43 loc) · 1012 Bytes
/
example.dot
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
digraph G {
rankdir="LR";
subgraph cluster_3{
subgraph cluster_2 {
style=filled;
color=lightgrey;
node [style=filled,color=white];
VS -> "top-K"->"sequential \n embeding"
label = "CWSE";
labeljust="l";
}
subgraph cluster_1 {
style=filled;
color=lightgrey;
node [style=filled,color=white];
encoding -> b
b[label="clustering"]
label = "core words don't exist";
labeljust="l";
}
subgraph cluster_0 {
style=filled;
color=lightgrey;
node [style=filled,color=white];
a
a [label="clustering"]
label = "core words exist";
labeljust="l";
}
label = "pairs to intents clustering";
labeljust="l";
}
start-> preprocessing
preprocessing -> VS
"sequential \n embeding"-> a
"sequential \n embeding" -> encoding
a->merge
b->merge
merge->MBLST
MBLST->end
start[style = invis]
end[style=invis]
}