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>

 

  • 4
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值