TensorFlow的全局變數「global variables」
TensorFlow有一個colletion機制,http://blog.csdn.net/shenxiaolu1984/article/details/52815641 這裡描述得非常好:「零存整取」
tensorflow用集合
colletion
組織不同類別的對象。tf.GraphKeys
中包含了所有默認集合的名稱。collection
提供了一種「零存整取」的思路:在任意位置,任意層次都可以創造對象,存入相應collection
中;創造完成後,統一從一個collection
中取出一類變數,施加相應操作。例如,
tf.Optimizer
只優化tf.GraphKeys.TRAINABLE_VARIABLES
中的變數。
global_variables也是一個collection。
TensorFlow維護的幾個collection:
【1】先看文檔
tf.global_variables
global_variables(scope=None)
Defined in tensorflow/python/ops/variables.py.n
See the guide: Variables > Variable helper functions
Returns global variables.
Global variables are variables that are shared across machines in a distributed environment.
這句話似乎並沒有什麼幫助。。。
The Variable()
constructor or get_variable()
automatically adds new variables to the graph collectionGraphKeys.GLOBAL_VARIABLES
. 【Variable()和get_variable()會生成新的global variable】
This convenience function returns the contents of that collection.
An alternative to global variables are local variables. See tf.local_variables
Args:
scope
: (Optional.) A string. If supplied, the resulting list is filtered to include only items whosename
attribute matchesscope
usingre.match
. 【name用正則匹配name】Items without aname
attribute are never returned if a scope is supplied.【沒有name的不會被匹配】 The choice ofre.match
means that ascope
without special tokens filters by prefix.
Returns:
A list of Variable
objects.
【2】通過tf.global_variables()查看「全局變數」
restore_var = [v for v in tf.global_variables()]n
以下是PSPNet的全部「global variables」,可以看到基本上是各層的權重和各種參數:
<tf.Variable conv1_1_3x3_s2/weights:0 shape=(3, 3, 3, 64) dtype=float32_ref>n<tf.Variable conv1_1_3x3_s2_bn/conv1_1_3x3_s2_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_1_3x3_s2_bn/conv1_1_3x3_s2_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_1_3x3_s2_bn/conv1_1_3x3_s2_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_1_3x3_s2_bn/conv1_1_3x3_s2_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_2_3x3/weights:0 shape=(3, 3, 64, 64) dtype=float32_ref>n<tf.Variable conv1_2_3x3_bn/conv1_2_3x3_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_2_3x3_bn/conv1_2_3x3_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_2_3x3_bn/conv1_2_3x3_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_2_3x3_bn/conv1_2_3x3_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv1_3_3x3/weights:0 shape=(3, 3, 64, 128) dtype=float32_ref>n<tf.Variable conv1_3_3x3_bn/conv1_3_3x3_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv1_3_3x3_bn/conv1_3_3x3_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv1_3_3x3_bn/conv1_3_3x3_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv1_3_3x3_bn/conv1_3_3x3_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_proj/weights:0 shape=(1, 1, 128, 256) dtype=float32_ref>n<tf.Variable conv2_1_1x1_proj_bn/conv2_1_1x1_proj_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_proj_bn/conv2_1_1x1_proj_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_proj_bn/conv2_1_1x1_proj_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_proj_bn/conv2_1_1x1_proj_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_reduce/weights:0 shape=(1, 1, 128, 64) dtype=float32_ref>n<tf.Variable conv2_1_1x1_reduce_bn/conv2_1_1x1_reduce_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_reduce_bn/conv2_1_1x1_reduce_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_reduce_bn/conv2_1_1x1_reduce_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_reduce_bn/conv2_1_1x1_reduce_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_3x3/weights:0 shape=(3, 3, 64, 64) dtype=float32_ref>n<tf.Variable conv2_1_3x3_bn/conv2_1_3x3_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_3x3_bn/conv2_1_3x3_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_3x3_bn/conv2_1_3x3_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_3x3_bn/conv2_1_3x3_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_increase/weights:0 shape=(1, 1, 64, 256) dtype=float32_ref>n<tf.Variable conv2_1_1x1_increase_bn/conv2_1_1x1_increase_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_increase_bn/conv2_1_1x1_increase_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_increase_bn/conv2_1_1x1_increase_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_1_1x1_increase_bn/conv2_1_1x1_increase_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_reduce/weights:0 shape=(1, 1, 256, 64) dtype=float32_ref>n<tf.Variable conv2_2_1x1_reduce_bn/conv2_2_1x1_reduce_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_reduce_bn/conv2_2_1x1_reduce_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_reduce_bn/conv2_2_1x1_reduce_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_reduce_bn/conv2_2_1x1_reduce_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_3x3/weights:0 shape=(3, 3, 64, 64) dtype=float32_ref>n<tf.Variable conv2_2_3x3_bn/conv2_2_3x3_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_3x3_bn/conv2_2_3x3_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_3x3_bn/conv2_2_3x3_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_3x3_bn/conv2_2_3x3_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_increase/weights:0 shape=(1, 1, 64, 256) dtype=float32_ref>n<tf.Variable conv2_2_1x1_increase_bn/conv2_2_1x1_increase_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_increase_bn/conv2_2_1x1_increase_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_increase_bn/conv2_2_1x1_increase_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_2_1x1_increase_bn/conv2_2_1x1_increase_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_reduce/weights:0 shape=(1, 1, 256, 64) dtype=float32_ref>n<tf.Variable conv2_3_1x1_reduce_bn/conv2_3_1x1_reduce_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_reduce_bn/conv2_3_1x1_reduce_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_reduce_bn/conv2_3_1x1_reduce_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_reduce_bn/conv2_3_1x1_reduce_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_3x3/weights:0 shape=(3, 3, 64, 64) dtype=float32_ref>n<tf.Variable conv2_3_3x3_bn/conv2_3_3x3_bn/gamma:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_3x3_bn/conv2_3_3x3_bn/beta:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_3x3_bn/conv2_3_3x3_bn/moving_mean:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_3x3_bn/conv2_3_3x3_bn/moving_variance:0 shape=(64,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_increase/weights:0 shape=(1, 1, 64, 256) dtype=float32_ref>n<tf.Variable conv2_3_1x1_increase_bn/conv2_3_1x1_increase_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_increase_bn/conv2_3_1x1_increase_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_increase_bn/conv2_3_1x1_increase_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv2_3_1x1_increase_bn/conv2_3_1x1_increase_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_proj/weights:0 shape=(1, 1, 256, 512) dtype=float32_ref>n<tf.Variable conv3_1_1x1_proj_bn/conv3_1_1x1_proj_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_proj_bn/conv3_1_1x1_proj_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_proj_bn/conv3_1_1x1_proj_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_proj_bn/conv3_1_1x1_proj_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_reduce/weights:0 shape=(1, 1, 256, 128) dtype=float32_ref>n<tf.Variable conv3_1_1x1_reduce_bn/conv3_1_1x1_reduce_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_reduce_bn/conv3_1_1x1_reduce_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_reduce_bn/conv3_1_1x1_reduce_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_reduce_bn/conv3_1_1x1_reduce_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_3x3/weights:0 shape=(3, 3, 128, 128) dtype=float32_ref>n<tf.Variable conv3_1_3x3_bn/conv3_1_3x3_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_3x3_bn/conv3_1_3x3_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_3x3_bn/conv3_1_3x3_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_3x3_bn/conv3_1_3x3_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_increase/weights:0 shape=(1, 1, 128, 512) dtype=float32_ref>n<tf.Variable conv3_1_1x1_increase_bn/conv3_1_1x1_increase_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_increase_bn/conv3_1_1x1_increase_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_increase_bn/conv3_1_1x1_increase_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_1_1x1_increase_bn/conv3_1_1x1_increase_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_reduce/weights:0 shape=(1, 1, 512, 128) dtype=float32_ref>n<tf.Variable conv3_2_1x1_reduce_bn/conv3_2_1x1_reduce_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_reduce_bn/conv3_2_1x1_reduce_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_reduce_bn/conv3_2_1x1_reduce_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_reduce_bn/conv3_2_1x1_reduce_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_3x3/weights:0 shape=(3, 3, 128, 128) dtype=float32_ref>n<tf.Variable conv3_2_3x3_bn/conv3_2_3x3_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_3x3_bn/conv3_2_3x3_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_3x3_bn/conv3_2_3x3_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_3x3_bn/conv3_2_3x3_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_increase/weights:0 shape=(1, 1, 128, 512) dtype=float32_ref>n<tf.Variable conv3_2_1x1_increase_bn/conv3_2_1x1_increase_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_increase_bn/conv3_2_1x1_increase_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_increase_bn/conv3_2_1x1_increase_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_2_1x1_increase_bn/conv3_2_1x1_increase_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_reduce/weights:0 shape=(1, 1, 512, 128) dtype=float32_ref>n<tf.Variable conv3_3_1x1_reduce_bn/conv3_3_1x1_reduce_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_reduce_bn/conv3_3_1x1_reduce_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_reduce_bn/conv3_3_1x1_reduce_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_reduce_bn/conv3_3_1x1_reduce_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_3x3/weights:0 shape=(3, 3, 128, 128) dtype=float32_ref>n<tf.Variable conv3_3_3x3_bn/conv3_3_3x3_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_3x3_bn/conv3_3_3x3_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_3x3_bn/conv3_3_3x3_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_3x3_bn/conv3_3_3x3_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_increase/weights:0 shape=(1, 1, 128, 512) dtype=float32_ref>n<tf.Variable conv3_3_1x1_increase_bn/conv3_3_1x1_increase_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_increase_bn/conv3_3_1x1_increase_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_increase_bn/conv3_3_1x1_increase_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_3_1x1_increase_bn/conv3_3_1x1_increase_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_reduce/weights:0 shape=(1, 1, 512, 128) dtype=float32_ref>n<tf.Variable conv3_4_1x1_reduce_bn/conv3_4_1x1_reduce_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_reduce_bn/conv3_4_1x1_reduce_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_reduce_bn/conv3_4_1x1_reduce_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_reduce_bn/conv3_4_1x1_reduce_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_3x3/weights:0 shape=(3, 3, 128, 128) dtype=float32_ref>n<tf.Variable conv3_4_3x3_bn/conv3_4_3x3_bn/gamma:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_3x3_bn/conv3_4_3x3_bn/beta:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_3x3_bn/conv3_4_3x3_bn/moving_mean:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_3x3_bn/conv3_4_3x3_bn/moving_variance:0 shape=(128,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_increase/weights:0 shape=(1, 1, 128, 512) dtype=float32_ref>n<tf.Variable conv3_4_1x1_increase_bn/conv3_4_1x1_increase_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_increase_bn/conv3_4_1x1_increase_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_increase_bn/conv3_4_1x1_increase_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv3_4_1x1_increase_bn/conv3_4_1x1_increase_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_proj/weights:0 shape=(1, 1, 512, 1024) dtype=float32_ref>n<tf.Variable conv4_1_1x1_proj_bn/conv4_1_1x1_proj_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_proj_bn/conv4_1_1x1_proj_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_proj_bn/conv4_1_1x1_proj_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_proj_bn/conv4_1_1x1_proj_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_reduce/weights:0 shape=(1, 1, 512, 256) dtype=float32_ref>n<tf.Variable conv4_1_1x1_reduce_bn/conv4_1_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_reduce_bn/conv4_1_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_reduce_bn/conv4_1_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_reduce_bn/conv4_1_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_1_3x3_bn/conv4_1_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_3x3_bn/conv4_1_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_3x3_bn/conv4_1_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_3x3_bn/conv4_1_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_1_1x1_increase_bn/conv4_1_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_increase_bn/conv4_1_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_increase_bn/conv4_1_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_1_1x1_increase_bn/conv4_1_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_2_1x1_reduce_bn/conv4_2_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_reduce_bn/conv4_2_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_reduce_bn/conv4_2_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_reduce_bn/conv4_2_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_2_3x3_bn/conv4_2_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_3x3_bn/conv4_2_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_3x3_bn/conv4_2_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_3x3_bn/conv4_2_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_2_1x1_increase_bn/conv4_2_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_increase_bn/conv4_2_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_increase_bn/conv4_2_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_2_1x1_increase_bn/conv4_2_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_3_1x1_reduce_bn/conv4_3_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_reduce_bn/conv4_3_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_reduce_bn/conv4_3_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_reduce_bn/conv4_3_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_3_3x3_bn/conv4_3_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_3x3_bn/conv4_3_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_3x3_bn/conv4_3_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_3x3_bn/conv4_3_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_3_1x1_increase_bn/conv4_3_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_increase_bn/conv4_3_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_increase_bn/conv4_3_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_3_1x1_increase_bn/conv4_3_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_4_1x1_reduce_bn/conv4_4_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_reduce_bn/conv4_4_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_reduce_bn/conv4_4_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_reduce_bn/conv4_4_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_4_3x3_bn/conv4_4_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_3x3_bn/conv4_4_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_3x3_bn/conv4_4_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_3x3_bn/conv4_4_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_4_1x1_increase_bn/conv4_4_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_increase_bn/conv4_4_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_increase_bn/conv4_4_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_4_1x1_increase_bn/conv4_4_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_5_1x1_reduce_bn/conv4_5_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_reduce_bn/conv4_5_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_reduce_bn/conv4_5_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_reduce_bn/conv4_5_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_5_3x3_bn/conv4_5_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_3x3_bn/conv4_5_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_3x3_bn/conv4_5_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_3x3_bn/conv4_5_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_5_1x1_increase_bn/conv4_5_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_increase_bn/conv4_5_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_increase_bn/conv4_5_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_5_1x1_increase_bn/conv4_5_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_6_1x1_reduce_bn/conv4_6_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_reduce_bn/conv4_6_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_reduce_bn/conv4_6_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_reduce_bn/conv4_6_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_6_3x3_bn/conv4_6_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_3x3_bn/conv4_6_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_3x3_bn/conv4_6_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_3x3_bn/conv4_6_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_6_1x1_increase_bn/conv4_6_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_increase_bn/conv4_6_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_increase_bn/conv4_6_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_6_1x1_increase_bn/conv4_6_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_7_1x1_reduce_bn/conv4_7_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_reduce_bn/conv4_7_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_reduce_bn/conv4_7_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_reduce_bn/conv4_7_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_7_3x3_bn/conv4_7_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_3x3_bn/conv4_7_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_3x3_bn/conv4_7_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_3x3_bn/conv4_7_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_7_1x1_increase_bn/conv4_7_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_increase_bn/conv4_7_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_increase_bn/conv4_7_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_7_1x1_increase_bn/conv4_7_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_8_1x1_reduce_bn/conv4_8_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_reduce_bn/conv4_8_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_reduce_bn/conv4_8_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_reduce_bn/conv4_8_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_8_3x3_bn/conv4_8_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_3x3_bn/conv4_8_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_3x3_bn/conv4_8_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_3x3_bn/conv4_8_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_8_1x1_increase_bn/conv4_8_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_increase_bn/conv4_8_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_increase_bn/conv4_8_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_8_1x1_increase_bn/conv4_8_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_9_1x1_reduce_bn/conv4_9_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_reduce_bn/conv4_9_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_reduce_bn/conv4_9_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_reduce_bn/conv4_9_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_9_3x3_bn/conv4_9_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_3x3_bn/conv4_9_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_3x3_bn/conv4_9_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_3x3_bn/conv4_9_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_9_1x1_increase_bn/conv4_9_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_increase_bn/conv4_9_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_increase_bn/conv4_9_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_9_1x1_increase_bn/conv4_9_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_10_1x1_reduce_bn/conv4_10_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_reduce_bn/conv4_10_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_reduce_bn/conv4_10_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_reduce_bn/conv4_10_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_10_3x3_bn/conv4_10_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_3x3_bn/conv4_10_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_3x3_bn/conv4_10_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_3x3_bn/conv4_10_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_10_1x1_increase_bn/conv4_10_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_increase_bn/conv4_10_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_increase_bn/conv4_10_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_10_1x1_increase_bn/conv4_10_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_11_1x1_reduce_bn/conv4_11_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_reduce_bn/conv4_11_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_reduce_bn/conv4_11_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_reduce_bn/conv4_11_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_11_3x3_bn/conv4_11_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_3x3_bn/conv4_11_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_3x3_bn/conv4_11_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_3x3_bn/conv4_11_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_11_1x1_increase_bn/conv4_11_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_increase_bn/conv4_11_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_increase_bn/conv4_11_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_11_1x1_increase_bn/conv4_11_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_12_1x1_reduce_bn/conv4_12_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_reduce_bn/conv4_12_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_reduce_bn/conv4_12_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_reduce_bn/conv4_12_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_12_3x3_bn/conv4_12_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_3x3_bn/conv4_12_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_3x3_bn/conv4_12_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_3x3_bn/conv4_12_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_12_1x1_increase_bn/conv4_12_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_increase_bn/conv4_12_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_increase_bn/conv4_12_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_12_1x1_increase_bn/conv4_12_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_13_1x1_reduce_bn/conv4_13_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_reduce_bn/conv4_13_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_reduce_bn/conv4_13_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_reduce_bn/conv4_13_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_13_3x3_bn/conv4_13_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_3x3_bn/conv4_13_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_3x3_bn/conv4_13_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_3x3_bn/conv4_13_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_13_1x1_increase_bn/conv4_13_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_increase_bn/conv4_13_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_increase_bn/conv4_13_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_13_1x1_increase_bn/conv4_13_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_14_1x1_reduce_bn/conv4_14_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_reduce_bn/conv4_14_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_reduce_bn/conv4_14_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_reduce_bn/conv4_14_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_14_3x3_bn/conv4_14_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_3x3_bn/conv4_14_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_3x3_bn/conv4_14_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_3x3_bn/conv4_14_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_14_1x1_increase_bn/conv4_14_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_increase_bn/conv4_14_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_increase_bn/conv4_14_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_14_1x1_increase_bn/conv4_14_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_15_1x1_reduce_bn/conv4_15_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_reduce_bn/conv4_15_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_reduce_bn/conv4_15_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_reduce_bn/conv4_15_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_15_3x3_bn/conv4_15_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_3x3_bn/conv4_15_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_3x3_bn/conv4_15_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_3x3_bn/conv4_15_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_15_1x1_increase_bn/conv4_15_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_increase_bn/conv4_15_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_increase_bn/conv4_15_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_15_1x1_increase_bn/conv4_15_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_16_1x1_reduce_bn/conv4_16_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_reduce_bn/conv4_16_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_reduce_bn/conv4_16_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_reduce_bn/conv4_16_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_16_3x3_bn/conv4_16_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_3x3_bn/conv4_16_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_3x3_bn/conv4_16_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_3x3_bn/conv4_16_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_16_1x1_increase_bn/conv4_16_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_increase_bn/conv4_16_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_increase_bn/conv4_16_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_16_1x1_increase_bn/conv4_16_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_17_1x1_reduce_bn/conv4_17_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_reduce_bn/conv4_17_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_reduce_bn/conv4_17_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_reduce_bn/conv4_17_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_17_3x3_bn/conv4_17_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_3x3_bn/conv4_17_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_3x3_bn/conv4_17_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_3x3_bn/conv4_17_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_17_1x1_increase_bn/conv4_17_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_increase_bn/conv4_17_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_increase_bn/conv4_17_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_17_1x1_increase_bn/conv4_17_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_18_1x1_reduce_bn/conv4_18_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_reduce_bn/conv4_18_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_reduce_bn/conv4_18_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_reduce_bn/conv4_18_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_18_3x3_bn/conv4_18_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_3x3_bn/conv4_18_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_3x3_bn/conv4_18_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_3x3_bn/conv4_18_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_18_1x1_increase_bn/conv4_18_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_increase_bn/conv4_18_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_increase_bn/conv4_18_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_18_1x1_increase_bn/conv4_18_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_19_1x1_reduce_bn/conv4_19_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_reduce_bn/conv4_19_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_reduce_bn/conv4_19_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_reduce_bn/conv4_19_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_19_3x3_bn/conv4_19_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_3x3_bn/conv4_19_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_3x3_bn/conv4_19_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_3x3_bn/conv4_19_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_19_1x1_increase_bn/conv4_19_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_increase_bn/conv4_19_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_increase_bn/conv4_19_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_19_1x1_increase_bn/conv4_19_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_20_1x1_reduce_bn/conv4_20_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_reduce_bn/conv4_20_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_reduce_bn/conv4_20_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_reduce_bn/conv4_20_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_20_3x3_bn/conv4_20_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_3x3_bn/conv4_20_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_3x3_bn/conv4_20_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_3x3_bn/conv4_20_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_20_1x1_increase_bn/conv4_20_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_increase_bn/conv4_20_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_increase_bn/conv4_20_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_20_1x1_increase_bn/conv4_20_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_21_1x1_reduce_bn/conv4_21_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_reduce_bn/conv4_21_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_reduce_bn/conv4_21_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_reduce_bn/conv4_21_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_21_3x3_bn/conv4_21_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_3x3_bn/conv4_21_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_3x3_bn/conv4_21_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_3x3_bn/conv4_21_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_21_1x1_increase_bn/conv4_21_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_increase_bn/conv4_21_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_increase_bn/conv4_21_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_21_1x1_increase_bn/conv4_21_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_22_1x1_reduce_bn/conv4_22_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_reduce_bn/conv4_22_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_reduce_bn/conv4_22_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_reduce_bn/conv4_22_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_22_3x3_bn/conv4_22_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_3x3_bn/conv4_22_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_3x3_bn/conv4_22_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_3x3_bn/conv4_22_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_22_1x1_increase_bn/conv4_22_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_increase_bn/conv4_22_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_increase_bn/conv4_22_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_22_1x1_increase_bn/conv4_22_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_reduce/weights:0 shape=(1, 1, 1024, 256) dtype=float32_ref>n<tf.Variable conv4_23_1x1_reduce_bn/conv4_23_1x1_reduce_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_reduce_bn/conv4_23_1x1_reduce_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_reduce_bn/conv4_23_1x1_reduce_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_reduce_bn/conv4_23_1x1_reduce_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_3x3/weights:0 shape=(3, 3, 256, 256) dtype=float32_ref>n<tf.Variable conv4_23_3x3_bn/conv4_23_3x3_bn/gamma:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_3x3_bn/conv4_23_3x3_bn/beta:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_3x3_bn/conv4_23_3x3_bn/moving_mean:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_3x3_bn/conv4_23_3x3_bn/moving_variance:0 shape=(256,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_increase/weights:0 shape=(1, 1, 256, 1024) dtype=float32_ref>n<tf.Variable conv4_23_1x1_increase_bn/conv4_23_1x1_increase_bn/gamma:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_increase_bn/conv4_23_1x1_increase_bn/beta:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_increase_bn/conv4_23_1x1_increase_bn/moving_mean:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv4_23_1x1_increase_bn/conv4_23_1x1_increase_bn/moving_variance:0 shape=(1024,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_proj/weights:0 shape=(1, 1, 1024, 2048) dtype=float32_ref>n<tf.Variable conv5_1_1x1_proj_bn/conv5_1_1x1_proj_bn/gamma:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_proj_bn/conv5_1_1x1_proj_bn/beta:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_proj_bn/conv5_1_1x1_proj_bn/moving_mean:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_proj_bn/conv5_1_1x1_proj_bn/moving_variance:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_reduce/weights:0 shape=(1, 1, 1024, 512) dtype=float32_ref>n<tf.Variable conv5_1_1x1_reduce_bn/conv5_1_1x1_reduce_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_reduce_bn/conv5_1_1x1_reduce_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_reduce_bn/conv5_1_1x1_reduce_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_reduce_bn/conv5_1_1x1_reduce_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_3x3/weights:0 shape=(3, 3, 512, 512) dtype=float32_ref>n<tf.Variable conv5_1_3x3_bn/conv5_1_3x3_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_3x3_bn/conv5_1_3x3_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_3x3_bn/conv5_1_3x3_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_3x3_bn/conv5_1_3x3_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_increase/weights:0 shape=(1, 1, 512, 2048) dtype=float32_ref>n<tf.Variable conv5_1_1x1_increase_bn/conv5_1_1x1_increase_bn/gamma:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_increase_bn/conv5_1_1x1_increase_bn/beta:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_increase_bn/conv5_1_1x1_increase_bn/moving_mean:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_1_1x1_increase_bn/conv5_1_1x1_increase_bn/moving_variance:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_reduce/weights:0 shape=(1, 1, 2048, 512) dtype=float32_ref>n<tf.Variable conv5_2_1x1_reduce_bn/conv5_2_1x1_reduce_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_reduce_bn/conv5_2_1x1_reduce_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_reduce_bn/conv5_2_1x1_reduce_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_reduce_bn/conv5_2_1x1_reduce_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_3x3/weights:0 shape=(3, 3, 512, 512) dtype=float32_ref>n<tf.Variable conv5_2_3x3_bn/conv5_2_3x3_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_3x3_bn/conv5_2_3x3_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_3x3_bn/conv5_2_3x3_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_3x3_bn/conv5_2_3x3_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_increase/weights:0 shape=(1, 1, 512, 2048) dtype=float32_ref>n<tf.Variable conv5_2_1x1_increase_bn/conv5_2_1x1_increase_bn/gamma:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_increase_bn/conv5_2_1x1_increase_bn/beta:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_increase_bn/conv5_2_1x1_increase_bn/moving_mean:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_2_1x1_increase_bn/conv5_2_1x1_increase_bn/moving_variance:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_reduce/weights:0 shape=(1, 1, 2048, 512) dtype=float32_ref>n<tf.Variable conv5_3_1x1_reduce_bn/conv5_3_1x1_reduce_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_reduce_bn/conv5_3_1x1_reduce_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_reduce_bn/conv5_3_1x1_reduce_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_reduce_bn/conv5_3_1x1_reduce_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_3x3/weights:0 shape=(3, 3, 512, 512) dtype=float32_ref>n<tf.Variable conv5_3_3x3_bn/conv5_3_3x3_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_3x3_bn/conv5_3_3x3_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_3x3_bn/conv5_3_3x3_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_3x3_bn/conv5_3_3x3_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_increase/weights:0 shape=(1, 1, 512, 2048) dtype=float32_ref>n<tf.Variable conv5_3_1x1_increase_bn/conv5_3_1x1_increase_bn/gamma:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_increase_bn/conv5_3_1x1_increase_bn/beta:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_increase_bn/conv5_3_1x1_increase_bn/moving_mean:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_3_1x1_increase_bn/conv5_3_1x1_increase_bn/moving_variance:0 shape=(2048,) dtype=float32_ref>n<tf.Variable conv5_3_pool1_conv/weights:0 shape=(1, 1, 2048, 512) dtype=float32_ref>n<tf.Variable conv5_3_pool1_conv_bn/conv5_3_pool1_conv_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool1_conv_bn/conv5_3_pool1_conv_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool1_conv_bn/conv5_3_pool1_conv_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool1_conv_bn/conv5_3_pool1_conv_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool2_conv/weights:0 shape=(1, 1, 2048, 512) dtype=float32_ref>n<tf.Variable conv5_3_pool2_conv_bn/conv5_3_pool2_conv_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool2_conv_bn/conv5_3_pool2_conv_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool2_conv_bn/conv5_3_pool2_conv_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool2_conv_bn/conv5_3_pool2_conv_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool3_conv/weights:0 shape=(1, 1, 2048, 512) dtype=float32_ref>n<tf.Variable conv5_3_pool3_conv_bn/conv5_3_pool3_conv_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool3_conv_bn/conv5_3_pool3_conv_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool3_conv_bn/conv5_3_pool3_conv_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool3_conv_bn/conv5_3_pool3_conv_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool6_conv/weights:0 shape=(1, 1, 2048, 512) dtype=float32_ref>n<tf.Variable conv5_3_pool6_conv_bn/conv5_3_pool6_conv_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool6_conv_bn/conv5_3_pool6_conv_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool6_conv_bn/conv5_3_pool6_conv_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_3_pool6_conv_bn/conv5_3_pool6_conv_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_4/weights:0 shape=(3, 3, 4096, 512) dtype=float32_ref>n<tf.Variable conv5_4_bn/conv5_4_bn/gamma:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_4_bn/conv5_4_bn/beta:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_4_bn/conv5_4_bn/moving_mean:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv5_4_bn/conv5_4_bn/moving_variance:0 shape=(512,) dtype=float32_ref>n<tf.Variable conv6/weights:0 shape=(1, 1, 512, 5) dtype=float32_ref>n<tf.Variable conv6/biases:0 shape=(5,) dtype=float32_ref>n
推薦閱讀:
※TensorFlow教程 - 預告
※手頭沒有GPU,學習tensorflow有意義嗎?
※用tf.placeholder構建features, labels容器
※CNN中卷積層的計算細節
TAG:TensorFlow |