zoukankan      html  css  js  c++  java
  • tensorflow查看ckpt各节点名称

    from tensorflow.python import pywrap_tensorflow
    import os

    checkpoint_path=os.path.join('output/res101/voc_2007_trainval+voc_2012_trainval/default/res101_faster_rcnn_iter_110000.ckpt')
    reader=pywrap_tensorflow.NewCheckpointReader(checkpoint_path)
    var_to_shape_map=reader.get_variable_to_shape_map()
    for key in var_to_shape_map:
    print ('tensor_name: ',key)

    ==================================================================

    tensor_name:  resnet_v1_101/rpn_conv/3x3/weights/Momentum
    tensor_name:  resnet_v1_101/rpn_cls_score/weights/Momentum
    tensor_name:  resnet_v1_101/rpn_bbox_pred/weights/Momentum
    tensor_name:  resnet_v1_101/rpn_bbox_pred/biases/Momentum
    tensor_name:  resnet_v1_101/rpn_bbox_pred/biases
    tensor_name:  resnet_v1_101/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/cls_score/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/weights
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/rpn_cls_score/biases
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/rpn_cls_score/weights
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/rpn_conv/3x3/biases
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/cls_score/biases/Momentum
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/cls_score/weights
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/bbox_pred/biases/Momentum
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/weights
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/bbox_pred/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/bbox_pred/biases
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/weights
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/weights
    tensor_name:  Variable
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/BatchNorm/gamma
    tensor_name:  resnet_v1_101/rpn_conv/3x3/weights
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/bbox_pred/weights
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/weights
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/rpn_bbox_pred/weights
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/cls_score/biases
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/rpn_cls_score/biases/Momentum
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/weights/Momentum
    tensor_name:  resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/weights
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/weights
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/BatchNorm/moving_mean
    tensor_name:  resnet_v1_101/rpn_conv/3x3/biases/Momentum
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/BatchNorm/moving_variance
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/BatchNorm/beta
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/weights/Momentum
    tensor_name:  resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/weights
    tensor_name:  resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/BatchNorm/gamma
    tensor_name:  resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/BatchNorm/gamma
    
    In [ ]:
     
     
     
     
     
     
     
  • 相关阅读:
    H50055:html 页面加载完后再加载js文件 ,url带有时间戳后缀
    H50054:html 页面自动刷新 http-equiv属性
    WebGL_0015:参数值在一定范围内循环变化
    H50053:switch 判断范围
    WebGL_0014:改变相机的刷新颜色
    WebGL_0013:JQuery获取json文件 读取数据
    WebGL_0012:三维讲解导航模板 Icon方式
    H50052:按钮 禁止 选择 拖拽 右键
    滑动窗口的最大值(队列)
    MapReduce程序编写过程
  • 原文地址:https://www.cnblogs.com/herd/p/10875539.html
Copyright © 2011-2022 走看看