Tensorflow打印网络结构与变量

在用tensorflow搭建好网络之后,如果可视化一下网络的结构与变量,会对网络结构有一个更直观的了解。

网络结构与变量的可视化方法如下:

在搭建好网络之后,如下代码可以打印出网络的变量


variables = tf.get_collection(tf.GraphKeys.TRAINABLE_VARIABLES)
for v in variables:
    print(v)

活动的输出如下:

<tf.Variable 'resnet_v2_152/conv1/weights:0' shape=(7, 7, 3, 64) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/conv1/biases:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/preact/gamma:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/preact/beta:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/shortcut/weights:0' shape=(1, 1, 64, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/shortcut/biases:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv1/weights:0' shape=(1, 1, 64, 64) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv2/weights:0' shape=(3, 3, 64, 64) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv3/weights:0' shape=(1, 1, 64, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_1/bottleneck_v2/conv3/biases:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/preact/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/preact/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv1/weights:0' shape=(1, 1, 256, 64) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv2/weights:0' shape=(3, 3, 64, 64) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv3/weights:0' shape=(1, 1, 64, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_2/bottleneck_v2/conv3/biases:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/preact/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/preact/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv1/weights:0' shape=(1, 1, 256, 64) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv2/weights:0' shape=(3, 3, 64, 64) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(64,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv3/weights:0' shape=(1, 1, 64, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block1/unit_3/bottleneck_v2/conv3/biases:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/preact/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/preact/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/shortcut/weights:0' shape=(1, 1, 256, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/shortcut/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv1/weights:0' shape=(1, 1, 256, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_1/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_2/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_3/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_4/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_5/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_6/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_7/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv2/weights:0' shape=(3, 3, 128, 128) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(128,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv3/weights:0' shape=(1, 1, 128, 512) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block2/unit_8/bottleneck_v2/conv3/biases:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/preact/gamma:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/preact/beta:0' shape=(512,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/shortcut/weights:0' shape=(1, 1, 512, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/shortcut/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv1/weights:0' shape=(1, 1, 512, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_1/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_2/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_3/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_4/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_5/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_6/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_7/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_8/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_9/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_10/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_11/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_12/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_13/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_14/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_15/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_16/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_17/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_18/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_19/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv3/weights:0' shape=(1, 1, 256, 1024) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_20/bottleneck_v2/conv3/biases:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/preact/gamma:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/preact/beta:0' shape=(1024,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/conv1/weights:0' shape=(1, 1, 1024, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/conv1/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/conv1/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/conv2/weights:0' shape=(3, 3, 256, 256) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/conv2/BatchNorm/gamma:0' shape=(256,) dtype=float32_ref>
<tf.Variable 'resnet_v2_152/block3/unit_21/bottleneck_v2/conv2/BatchNorm/beta:0' shape=(256,) dtype=float32_ref>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章