Last active
May 18, 2019 14:42
-
-
Save foowaa/063c921b511e129a1943342b10b1ee98 to your computer and use it in GitHub Desktop.
graphviz dot file example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment