Skip to content

Instantly share code, notes, and snippets.

@napsternxg
Last active August 15, 2020 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save napsternxg/149c9f0cbfeaf9325dcf7f6c002d5fbc to your computer and use it in GitHub Desktop.
Save napsternxg/149c9f0cbfeaf9325dcf7f6c002d5fbc to your computer and use it in GitHub Desktop.
Multimodal VAE graphical modal paste the code: https://dreampuf.github.io/GraphvizOnline/
digraph G {
subgraph cluster_1 {
style=filled;
color=pink;
//node [style=filled,color=white];
"x_1" -> "z_1";
label="encoder1";
}
subgraph cluster_2 {
style=filled;
color=cyan;
//color=lightgrey;
//node [style=filled,color=white];
"x_2" -> "z_2";
label="encoder2";
}
subgraph cluster_3 {
style=filled;
color=green;
//color=lightgrey;
//node [style=filled,color=white];
"x_3" -> "z_3";
label="encoder3";
}
"z_1" -> "z*_1" [color=pink];
"z_2" -> "z*_1" [color=pink];
"z_3" -> "z*_1" [color=pink];
"z_1" -> "z*_2" [color=cyan];
"z_2" -> "z*_2" [color=cyan];
"z_3" -> "z*_2" [color=cyan];
"z_1" -> "z*_3" [color=green];
"z_2" -> "z*_3" [color=green];
"z_3" -> "z*_3" [color=green];
"z*_1" -> "x*_1";
"z*_2" -> "x*_2";
"z*_3" -> "x*_3";
z_1 [style=filled];
z_2 [style=filled];
z_3 [style=filled];
"z*_1" [style=filled,fillcolor=pink];
"z*_2" [style=filled,fillcolor=cyan];
"z*_3" [style=filled,fillcolor=green];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment