tensorflow / tensorboard

TensorFlow's Visualization Toolkit
Apache License 2.0
6.69k stars 1.66k forks source link

Graph Visualizer: turning off node collapsing #572

Open yaroslavvb opened 7 years ago

yaroslavvb commented 7 years ago

TensorBoard collapses Relu-Relu_6 nodes together into one node which turns simple neural net graphs into a jumple

Example pbtxt here from resnet-8 from https://github.com/tensorflow/models

Current TensorBoard

screenshot 2017-09-25 11 35 53

Here's after I hack it to stop collapsing Relu nodes. Note that softmax layer is now at the top as expected, instead of middle of the graph as before

screenshot 2017-09-25 12 16 59

chihuahua commented 7 years ago

Hmm, one quick thing you can do is to select the series node and then click "Ungroup this series of nodes":

iqrnm9qxdfb

yaroslavvb commented 6 years ago

Another example pbtxt, it's resnet 14 cifar, you have to spend a few minutes uncollapsing nodes before it becomes visualizable cifar_14.txt

bileschi commented 4 years ago

@davidsoergel is there a master issue for graph management?