在用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>
<li class="tool-item tool-active is-like "><a href="javascript:;"><svg class="icon" aria-hidden="true"> <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#csdnc-thumbsup"></use> </svg><span class="name">点赞</span> <span class="count"></span> </a></li> <li class="tool-item tool-active is-collection "><a href="javascript:;" data-report-click="{"mod":"popu_824"}"><svg class="icon" aria-hidden="true"> <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-csdnc-Collection-G"></use> </svg><span class="name">收藏</span></a></li> <li class="tool-item tool-active is-share"><a href="javascript:;" data-report-click="{"mod":"1582594662_002"}"><svg class="icon" aria-hidden="true"> <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-csdnc-fenxiang"></use> </svg>分享</a></li> <!--打赏开始--> <!--打赏结束--> <li class="tool-item tool-more"> <a> <svg t="1575545411852" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5717" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M179.176 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5718"></path><path d="M509.684 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5719"></path><path d="M846.175 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5720"></path></svg> </a> <ul class="more-box"> <li class="item"><a class="article-report">文章举报</a></li> </ul> </li> </ul> </div> </div> <div class="person-messagebox"> <div class="left-message"><a href="https://blog.csdn.net/LCCFlccf"> <img src="https://profile.csdnimg.cn/B/0/8/3_lccflccf" class="avatar_pic" username="LCCFlccf"> <img src="https://g.csdnimg.cn/static/user-reg-year/1x/2.png" class="user-years"> </a></div> <div class="middle-message"> <div class="title"><span class="tit"><a href="https://blog.csdn.net/LCCFlccf" data-report-click="{"mod":"popu_379"}" target="_blank">LCCFlccf</a></span> </div> <div class="text"><span>发布了39 篇原创文章</span> · <span>获赞 29</span> · <span>访问量 7万+</span></div> </div> <div class="right-message"> <a href="https://im.csdn.net/im/main.html?userName=LCCFlccf" target="_blank" class="btn btn-sm btn-red-hollow bt-button personal-letter">私信 </a> <a class="btn btn-sm bt-button personal-watch" data-report-click="{"mod":"popu_379"}">关注</a> </div> </div> </div> </article>