@ -0,0 +1,56 @@
|
|||||||
|
digraph G {
|
||||||
|
|
||||||
|
rnn [label="1st level RNN" shape=box]
|
||||||
|
|
||||||
|
subgraph cluster0 {
|
||||||
|
label = "time step 0"
|
||||||
|
|
||||||
|
sent0 [label="sentence"]
|
||||||
|
sent1 [label="sentence"]
|
||||||
|
|
||||||
|
rnn1 [label="2nd level RNN" shape=box]
|
||||||
|
|
||||||
|
sent0 -> rnn1
|
||||||
|
sent1 -> rnn1
|
||||||
|
}
|
||||||
|
|
||||||
|
subgraph cluster1 {
|
||||||
|
label = "time step 1"
|
||||||
|
|
||||||
|
sent2 [label="sentence"]
|
||||||
|
sent3 [label="sentence"]
|
||||||
|
|
||||||
|
rnn2 [label="2nd level RNN" shape=box]
|
||||||
|
|
||||||
|
sent2 -> rnn2
|
||||||
|
sent3 -> rnn2
|
||||||
|
}
|
||||||
|
|
||||||
|
subgraph cluster2 {
|
||||||
|
label = "time step 2"
|
||||||
|
|
||||||
|
sent4 [label="sentence"]
|
||||||
|
sent5 [label="sentence"]
|
||||||
|
|
||||||
|
rnn3 [label="2nd level RNN" shape=box]
|
||||||
|
|
||||||
|
sent4 -> rnn3
|
||||||
|
sent5 -> rnn3
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
para0 [label="paragraph info 0"]
|
||||||
|
para1 [label="paragraph info 1"]
|
||||||
|
para2 [label="paragraph info 2"]
|
||||||
|
|
||||||
|
rnn1 -> para0
|
||||||
|
rnn2 -> para1
|
||||||
|
rnn3 -> para2
|
||||||
|
|
||||||
|
para0 -> rnn
|
||||||
|
para1 -> rnn
|
||||||
|
para2 -> rnn
|
||||||
|
|
||||||
|
chapter [label="chapter info"]
|
||||||
|
rnn -> chapter
|
||||||
|
}
|
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 620 B |
@ -0,0 +1,25 @@
|
|||||||
|
digraph ImageBatchNormForkGragh {
|
||||||
|
subgraph cluster_before {
|
||||||
|
Prev [label="...", shape=plaintext];
|
||||||
|
Rnn [label="rnn_op", shape=box];
|
||||||
|
BatchNorm [label="batch_norm_op", shape=box];
|
||||||
|
Fc [label="fc_op", shape=box];
|
||||||
|
After [label="...", shape=plaintext];
|
||||||
|
Prev -> Rnn -> BatchNorm -> Fc -> After;
|
||||||
|
label="original";
|
||||||
|
}
|
||||||
|
|
||||||
|
subgraph cluster_after {
|
||||||
|
Prev2 [label="...", shape=plaintext];
|
||||||
|
Rnn2 [label="rnn_op", shape=box];
|
||||||
|
BatchNorm2_1 [label="train_batch_norm_op", shape=box];
|
||||||
|
BatchNorm2_2 [label="infer_batch_norm_op", shape=box];
|
||||||
|
Fc2_1 [label="fc_op", shape=box];
|
||||||
|
Fc2_2 [label="fc_op", shape=box];
|
||||||
|
After2_1 [label="...", shape=plaintext];
|
||||||
|
After2_2 [label="...", shape=plaintext];
|
||||||
|
Prev2 -> Rnn2 -> BatchNorm2_1 -> Fc2_1 -> After2_1;
|
||||||
|
Rnn2 -> BatchNorm2_2 ->Fc2_2 ->After2_2
|
||||||
|
label="forked";
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 161 KiB |
After Width: | Height: | Size: 464 KiB |
After Width: | Height: | Size: 280 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 222 KiB |
After Width: | Height: | Size: 189 KiB |
After Width: | Height: | Size: 114 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 121 KiB |