tensorflow / tfjs

A WebGL accelerated JavaScript library for training and deploying ML models.
https://js.tensorflow.org
Apache License 2.0
18.49k stars 1.93k forks source link

Tensorflow JS Converter Can't Find Expected FusedBatchNorm Input #5691

Closed ByrdOfAFeather closed 3 years ago

ByrdOfAFeather commented 3 years ago

Please make sure that this is a bug. As per our GitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template

System information

import tensorflow as tf

meta_path = 'test.meta' # Your .meta file
output_node_names = ['pose/locref_pred/block4/BiasAdd', 'pose/part_pred/block4/BiasAdd']    # Output nodes

with tf.compat.v1.Session() as sess:
    # Restore the graph
    saver = tf.compat.v1.train.import_meta_graph(meta_path)

    # Load weights
    saver.restore(sess,tf.compat.v1.train.latest_checkpoint('checkpoint_folder'))

    # Freeze the graph
    frozen_graph_def = tf.compat.v1.graph_util.convert_variables_to_constants(
        sess,
        sess.graph_def,
        output_node_names, variable_names_blacklist=[n.name for n in sess.graph_def.node if "FusedBatchNorm" in n.name])

    # Save the frozen graph
    with open('_graph.pb', 'wb') as f:
      f.write(frozen_graph_def.SerializeToString())

Describe the current behavior When using this command : tensorflowjs_converter --input_format=tf_frozen_model --output_node_names='pose/locref_pred/block4/BiasAdd','pose/part_pred/block4/BiasAdd' output_graph.pb output --skip_op_check

I get

2021-10-04 11:07:07.150484: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
2021-10-04 11:07:13.137106: I tensorflow/core/grappler/optimizers/meta_optimizer.cc:1137] Optimization results for grappler item: graph_to_optimize
  debug_stripper: debug_stripper did nothing. time = 0.369ms.
  model_pruner: Graph size after: 1130 nodes (-530), 1201 edges (-530), time = 29.391ms.
  constant_folding: Graph size after: 1088 nodes (-42), 1147 edges (-54), time = 105.765ms.
  arithmetic_optimizer: Graph size after: 1088 nodes (0), 1147 edges (0), time = 52.367ms.
  dependency_optimizer: Graph size after: 1064 nodes (-24), 1123 edges (-24), time = 23.379ms.
  model_pruner: Graph size after: 1064 nodes (0), 1123 edges (0), time = 10.789ms.
  constant_folding: Graph size after: 1064 nodes (0), 1123 edges (0), time = 42.342ms.
  arithmetic_optimizer: Graph size after: 1064 nodes (0), 1123 edges (0), time = 41.601ms.
  dependency_optimizer: Graph size after: 1064 nodes (0), 1123 edges (0), time = 26.46ms.
  debug_stripper: debug_stripper did nothing. time = 2.391ms.
  model_pruner: Graph size after: 1064 nodes (0), 1123 edges (0), time = 15.009ms.
  constant_folding: Graph size after: 1064 nodes (0), 1123 edges (0), time = 40.475ms.
  arithmetic_optimizer: Graph size after: 1064 nodes (0), 1123 edges (0), time = 33.552ms.
  dependency_optimizer: Graph size after: 1064 nodes (0), 1123 edges (0), time = 20.708ms.
  model_pruner: Graph size after: 1064 nodes (0), 1123 edges (0), time = 12.907ms.
  constant_folding: Graph size after: 1064 nodes (0), 1123 edges (0), time = 44.195ms.
  arithmetic_optimizer: Graph size after: 1064 nodes (0), 1123 edges (0), time = 37.797ms.
  dependency_optimizer: Graph size after: 1064 nodes (0), 1123 edges (0), time = 25.408ms.

WARNING:tensorflow:Didn't find expected Conv2D or DepthwiseConv2dNative input to 'resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3'
WARNING:tensorflow:Didn't find expected Conv2D or DepthwiseConv2dNative input to 'resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3'
WARNING:tensorflow:Didn't find expected Conv2D or DepthwiseConv2dNative input to 'resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3'

The warnings here appear to be problematic. When loading the files into a browser, I get

tf.loadGraphModel('http://127.0.0.1:5000/download/model.json') Promise {<pending>} util.ts:105 Uncaught (in promise) Error: Based on the provided shape, [3,3,512,512], the tensor should have 2359296 values but has 2300067

Describe the expected behavior

Either the warnings should not exist (i.e. the FusedBatchNorm is converted properly), or the model should be able to load in the browser without the batch norm layers

Standalone code to reproduce the issue https://github.com/ByrdOfAFeather/tfjs_bug

rthadur commented 3 years ago

@ByrdOfAFeather you mentioned you are using tfjs-converter 3.9 but in your code there is reference to older tfjs version https://github.com/ByrdOfAFeather/tfjs_bug/blob/master/templates/val_model.html#L6 , is this intended ?

rthadur commented 3 years ago

and also Frozen models are not supported in latest versions. Thank you

ByrdOfAFeather commented 3 years ago

@ByrdOfAFeather you mentioned you are using tfjs-converter 3.9 but in your code there is reference to older tfjs version https://github.com/ByrdOfAFeather/tfjs_bug/blob/master/templates/val_model.html#L6 , is this intended ?

Yes so this is my bad - I was referring to my python install of tensorflowjs and didn't check the version I was using on the web, I just tried it with tfjs@3.9.0 and receive the same error when trying to load in the model.

and also Frozen models are not supported in latest versions. Thank you

If this is the case, is there anyway to take a snapshot.meta, snapshot.index, shapshot.data and use it with tensorflowjs? I've being trying to find a way to convert these into a Tensorflow 2 style model (they were generated with tensorflow.compat.v1) but can't seem to find a way to do this anywhere.

rthadur commented 3 years ago

I have no idea , sorry. @pyu10055 ++ for any help . Thank you

pyu10055 commented 3 years ago

@ByrdOfAFeather I tried your model, the loading did not generate any error for me. But I cannot execute the model since it contains no input placeholder nodes, can you confirm that you have selected the correct output nodes for freezing the model?

And the warning message during conversion just to indicate that there are no associated convolution nodes for the FusedBatchnorm node, so it cannot be fused further, it should not affect the inference, it is just part of the model optimization we do during conversion.


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
    <script>
        window.addEventListener("DOMContentLoaded", main);

        const MODEL_URL = "./model.json";

        async function main() {
            const model = await tf.loadGraphModel(MODEL_URL);
            console.log(model);
        }
    </script>
</body>
</html>
ByrdOfAFeather commented 3 years ago

@ByrdOfAFeather I tried your model, the loading did not generate any error for me. But I cannot execute the model since it contains no input placeholder nodes, can you confirm that you have selected the correct output nodes for freezing the model?

And the warning message during conversion just to indicate that there are no associated convolution nodes for the FusedBatchnorm node, so it cannot be fused further, it should not affect the inference, it is just part of the model optimization we do during conversion.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
    <script>
        window.addEventListener("DOMContentLoaded", main);

        const MODEL_URL = "./model.json";

        async function main() {
            const model = await tf.loadGraphModel(MODEL_URL);
            console.log(model);
        }
    </script>
</body>
</html>

@pyu10055 I am still not able to load the model, even with this code. However, it seems that you are loading the model.json from local disk? When changing this code to load the model from the /download/model.json it fails. I don't have a nodejs dev, environment setup right now, so I can't directly test loading from disk. Could you confirm that when loading from the endpoint it fails? Is it possible that when loading from the disk it's not looking at the saved weights for some reason and just loading the skeleton of the model?

I am almost certain these are the proper outputs of the model (looking at it in tensorboard graphs seems to indicate as much at least). This is a pre-trained resnet model with a slight modification to have two outputs, so perhaps you could comment if you have experience with that sort of setup in tensorflow. The only layers after these are going to be loss layers, which aren't relevant to the prediction, right? As well, shouldn't the converter warn if there were no input nodes?

pyu10055 commented 3 years ago

@ByrdOfAFeather maybe you can share screenshot of the network tab in the chrome developer tools while you loading the model. It is likely that you failed to download the binary files. If you have python3, you can use python -m http.server to start a web work, but all your files needs to be under the directory where you run the command.

ByrdOfAFeather commented 3 years ago

@pyu10055 Screenshot_20211009_221143 Screenshot_20211009_221146 Screenshot_20211009_221151

All files seem to be downloaded successfully, ignore the two errors, one happened before I opened the networking tab, I just used loadGraph again in the code provided in the github linked in the original post.

pyu10055 commented 3 years ago

@ByrdOfAFeather looks like all of your model binary file is of size 178B, they should be 4MB, it is likely caused by some permission error, you should check the response header, or share screenshot of the header here.

ByrdOfAFeather commented 3 years ago

Screenshot_20211014_200358 Screenshot_20211014_200414

Screenshot_20211014_200529 Unfortunately, it still seems that is not the issue :[ the headers look normal to me @pyu10055

pyu10055 commented 3 years ago

@ByrdOfAFeather looks like your model.json is downloaded correctly, and you can try directly test the url of the weight bin file in the browser address bar, see what content you are getting.

ByrdOfAFeather commented 3 years ago

@pyu10055 Here is the output when I try to download, for example, the first weight bin

(also while I have the chance thank you for your dedication on this issue).

{"format": "graph-model", "generatedBy": "2.6.0", "convertedBy": "TensorFlow.js Converter v3.9.0", "signature": {"outputs": {"pose/part_pred/block4/BiasAdd": {"name": "pose/part_pred/block4/BiasAdd"}, "pose/locref_pred/block4/BiasAdd": {"name": "pose/locref_pred/block4/BiasAdd"}}}, "modelTopology": {"node": [{"name": "pose/locref_pred/block4/strided_slice/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/strided_slice/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/strided_slice/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/strided_slice_1/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/strided_slice_1/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/locref_pred/block4/strided_slice_1/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/locref_pred/block4/mul/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/strided_slice_2/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/locref_pred/block4/strided_slice_2/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/locref_pred/block4/strided_slice_2/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/mul_1/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/stack/3", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "8"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "pose/locref_pred/block4/biases", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "8"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "pose/part_pred/block4/strided_slice/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/strided_slice/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/strided_slice/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/strided_slice_1/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/strided_slice_1/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/part_pred/block4/strided_slice_1/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/part_pred/block4/mul/y", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "pose/part_pred/block4/strided_slice_2/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/part_pred/block4/strided_slice_2/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/strided_slice_2/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "pose/part_pred/block4/mul_1/y", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "pose/part_pred/block4/stack/3", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "4"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "512"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "512"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "512"}, {"size": "512"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "fifo_queue", "op": "FIFOQueueV2", "device": "/device:CPU:*", "attr": {"shapes": {"list": {}}, "capacity": {"i": "20"}, "container": {"s": ""}, "component_types": {"list": {"type": ["DT_FLOAT", "DT_FLOAT", "DT_FLOAT", "DT_FLOAT", "DT_FLOAT"]}}, "shared_name": {"s": ""}}}, {"name": "img_mean", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1"}, {"size": "3"}]}}}}}, {"name": "resnet_v1_101/Pad/paddings", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "4"}, {"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/Pad/paddings", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "4"}, {"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/Pad/paddings", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "4"}, {"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/dilation_rate", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/dilation_rate", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/dilation_rate", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/biases", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "4"}]}}}}}, {"name": "resnet_v1_101/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "7"}, {"size": "7"}, {"size": "3"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "128"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "512"}]}}}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "128"}]}}}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "2048"}]}}}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "2048"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "2048"}, {"size": "512"}]}}}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "fifo_queue_Dequeue", "op": "QueueDequeueV2", "input": ["fifo_queue"], "attr": {"timeout_ms": {"i": "-1"}, "component_types": {"list": {"type": ["DT_FLOAT", "DT_FLOAT", "DT_FLOAT", "DT_FLOAT", "DT_FLOAT"]}}}}, {"name": "sub", "op": "Sub", "input": ["fifo_queue_Dequeue", "img_mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/Pad", "op": "Pad", "input": ["sub", "resnet_v1_101/Pad/paddings"], "attr": {"Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/Pad", "resnet_v1_101/conv1/Conv2D_weights", "resnet_v1_101/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/pool1/MaxPool", "op": "MaxPool", "input": ["resnet_v1_101/conv1/Relu"], "attr": {"padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "ksize": {"list": {"i": ["1", "3", "3", "1"]}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/pool1/MaxPool", "resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/pool1/MaxPool", "resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Relu", "resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Relu", "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block1/unit_1/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Relu", "resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Relu", "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block1/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block1/unit_2/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/shortcut/MaxPool", "op": "MaxPool", "input": ["resnet_v1_101/block1/unit_2/bottleneck_v1/Relu"], "attr": {"explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "ksize": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_2/bottleneck_v1/Relu", "resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/Pad", "op": "Pad", "input": ["resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Relu", "resnet_v1_101/block1/unit_3/bottleneck_v1/Pad/paddings"], "attr": {"Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_3/bottleneck_v1/Pad", "resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "padding": {"s": "VkFMSUQ="}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Relu", "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block1/unit_3/bottleneck_v1/shortcut/MaxPool", "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block1/unit_3/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_3/bottleneck_v1/Relu", "resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block1/unit_3/bottleneck_v1/Relu", "resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Relu", "resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Relu", "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block2/unit_1/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Relu", "resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Relu", "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block2/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block2/unit_2/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_2/bottleneck_v1/Relu", "resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Relu", "resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Relu", "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block2/unit_2/bottleneck_v1/Relu", "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block2/unit_3/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/shortcut/MaxPool", "op": "MaxPool", "input": ["resnet_v1_101/block2/unit_3/bottleneck_v1/Relu"], "attr": {"ksize": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_3/bottleneck_v1/Relu", "resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/Pad", "op": "Pad", "input": ["resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Relu", "resnet_v1_101/block2/unit_4/bottleneck_v1/Pad/paddings"], "attr": {"T": {"type": "DT_FLOAT"}, "Tpaddings": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_4/bottleneck_v1/Pad", "resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "VkFMSUQ="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Relu", "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block2/unit_4/bottleneck_v1/shortcut/MaxPool", "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block2/unit_4/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_4/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block2/unit_4/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_1/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_2/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_2/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_2/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_3/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_3/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_3/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_4/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_4/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_4/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_5/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_5/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_5/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_6/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_6/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_6/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_7/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_7/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_7/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_8/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_8/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_8/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_9/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_9/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_9/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_10/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_10/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_10/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_11/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_11/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_11/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_12/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_12/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_12/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_13/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_13/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_13/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_14/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_14/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_14/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_15/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_15/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_15/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_16/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_16/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_16/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_17/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_17/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_17/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_18/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_18/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_18/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_19/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_19/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_19/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_20/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_20/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_20/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_21/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_21/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_21/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_22/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_22/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "epsilon": {"f": 0.0}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Relu", "resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Conv2D_weights", "resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Relu", "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block3/unit_22/bottleneck_v1/Relu", "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block3/unit_23/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_23/bottleneck_v1/Relu", "resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block3/unit_23/bottleneck_v1/Relu", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/Shape", "op": "Shape", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Relu"], "attr": {"out_type": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/Shape", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2"], "attr": {"shrink_axis_mask": {"i": "1"}, "new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/Shape", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "shrink_axis_mask": {"i": "1"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/stack_1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1"], "attr": {"axis": {"i": "0"}, "N": {"i": "2"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_1", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/stack_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod", "op": "FloorMod", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/dilation_rate"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/sub", "op": "Sub", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/dilation_rate", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "op": "FloorMod", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/sub", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/dilation_rate"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2"], "attr": {"shrink_axis_mask": {"i": "1"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2"], "attr": {"end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "T": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}, "begin_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "Index": {"type": "DT_INT32"}, "shrink_axis_mask": {"i": "1"}, "new_axis_mask": {"i": "0"}, "begin_mask": {"i": "0"}, "end_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2"], "attr": {"T": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "begin_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "shrink_axis_mask": {"i": "1"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0", "op": "Pack", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6"], "attr": {"axis": {"i": "0"}, "T": {"type": "DT_INT32"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7"], "attr": {"T": {"type": "DT_INT32"}, "N": {"i": "2"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/0", "op": "Pack", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3"], "attr": {"T": {"type": "DT_INT32"}, "axis": {"i": "0"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_INT32"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops", "op": "Pack", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_INT32"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings", "op": "Pack", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/0", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/1"], "attr": {"T": {"type": "DT_INT32"}, "N": {"i": "2"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/SpaceToBatchND", "op": "SpaceToBatchND", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Relu", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings"], "attr": {"Tblock_shape": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "Tpaddings": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D", "op": "Conv2D", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/SpaceToBatchND", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/weights"], "device": "/device:CPU:0", "attr": {"padding": {"s": "VkFMSUQ="}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/BatchToSpaceND", "op": "BatchToSpaceND", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops"], "attr": {"Tcrops": {"type": "DT_INT32"}, "Tblock_shape": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Mul", "op": "Mul", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/BatchToSpaceND", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3", "op": "Add", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Mul", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Relu", "op": "Relu", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Relu", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/BatchNorm/FusedBatchNormV3", "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/Shape", "op": "Shape", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Relu"], "attr": {"out_type": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/Shape", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2"], "attr": {"end_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "new_axis_mask": {"i": "0"}, "begin_mask": {"i": "0"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/Shape", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/stack_1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1"], "attr": {"axis": {"i": "0"}, "N": {"i": "2"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_1", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/stack_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod", "op": "FloorMod", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/dilation_rate"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/sub", "op": "Sub", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/dilation_rate", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "op": "FloorMod", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/sub", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/dilation_rate"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2"], "attr": {"new_axis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "begin_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2"], "attr": {"end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "ellipsis_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2"], "attr": {"shrink_axis_mask": {"i": "1"}, "Index": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "begin_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2"], "attr": {"T": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "Index": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0", "op": "Pack", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6"], "attr": {"axis": {"i": "0"}, "T": {"type": "DT_INT32"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_INT32"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/0", "op": "Pack", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_INT32"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5"], "attr": {"N": {"i": "2"}, "axis": {"i": "0"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops", "op": "Pack", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1"], "attr": {"N": {"i": "2"}, "axis": {"i": "0"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings", "op": "Pack", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/0", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/1"], "attr": {"T": {"type": "DT_INT32"}, "axis": {"i": "0"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/SpaceToBatchND", "op": "SpaceToBatchND", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Relu", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings"], "attr": {"Tblock_shape": {"type": "DT_INT32"}, "Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D", "op": "Conv2D", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/SpaceToBatchND", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/weights"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "VkFMSUQ="}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/BatchToSpaceND", "op": "BatchToSpaceND", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops"], "attr": {"Tblock_shape": {"type": "DT_INT32"}, "Tcrops": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Mul", "op": "Mul", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/BatchToSpaceND", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3", "op": "Add", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Mul", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Relu", "op": "Relu", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Relu", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_1/bottleneck_v1/Relu", "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Relu", "op": "_FusedConv2D", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/Relu", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Conv2D_weights", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/Shape", "op": "Shape", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Relu"], "attr": {"T": {"type": "DT_FLOAT"}, "out_type": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/Shape", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2"], "attr": {"end_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/Shape", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "Index": {"type": "DT_INT32"}, "T": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/stack_1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_INT32"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_1", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/stack_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod", "op": "FloorMod", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/dilation_rate"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/sub", "op": "Sub", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/dilation_rate", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "op": "FloorMod", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/sub", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/dilation_rate"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2"], "attr": {"T": {"type": "DT_INT32"}, "shrink_axis_mask": {"i": "1"}, "ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/mod_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2"], "attr": {"shrink_axis_mask": {"i": "1"}, "end_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2"], "attr": {"T": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "Index": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "begin_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5", "op": "StridedSlice", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add_2", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "begin_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "Index": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "end_mask": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0", "op": "Pack", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6"], "attr": {"T": {"type": "DT_INT32"}, "axis": {"i": "0"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7"], "attr": {"axis": {"i": "0"}, "T": {"type": "DT_INT32"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/0", "op": "Pack", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3"], "attr": {"axis": {"i": "0"}, "N": {"i": "2"}, "T": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/1", "op": "Pack", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5"], "attr": {"axis": {"i": "0"}, "T": {"type": "DT_INT32"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops", "op": "Pack", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1"], "attr": {"axis": {"i": "0"}, "T": {"type": "DT_INT32"}, "N": {"i": "2"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings", "op": "Pack", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/0", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings/1"], "attr": {"T": {"type": "DT_INT32"}, "N": {"i": "2"}, "axis": {"i": "0"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/SpaceToBatchND", "op": "SpaceToBatchND", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Relu", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/paddings"], "attr": {"T": {"type": "DT_FLOAT"}, "Tpaddings": {"type": "DT_INT32"}, "Tblock_shape": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D", "op": "Conv2D", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/SpaceToBatchND", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/weights"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "padding": {"s": "VkFMSUQ="}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/BatchToSpaceND", "op": "BatchToSpaceND", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops"], "attr": {"Tblock_shape": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "Tcrops": {"type": "DT_INT32"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Mul", "op": "Mul", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/BatchToSpaceND", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3", "op": "Add", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Mul", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Relu", "op": "Relu", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3", "op": "_FusedConv2D", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Relu", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/Conv2D_weights", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/add", "op": "AddV2", "input": ["resnet_v1_101/block4/unit_2/bottleneck_v1/Relu", "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/BatchNorm/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/Relu", "op": "Relu", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "pose/locref_pred/block4/Shape", "op": "Shape", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/Relu"], "attr": {"T": {"type": "DT_FLOAT"}, "out_type": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/Shape", "op": "Shape", "input": ["resnet_v1_101/block4/unit_3/bottleneck_v1/Relu"], "attr": {"out_type": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "pose/locref_pred/block4/strided_slice", "op": "StridedSlice", "input": ["pose/locref_pred/block4/Shape", "pose/locref_pred/block4/strided_slice/stack", "pose/locref_pred/block4/strided_slice/stack_1", "pose/locref_pred/block4/strided_slice/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "T": {"type": "DT_INT32"}, "Index": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "begin_mask": {"i": "0"}}}, {"name": "pose/locref_pred/block4/strided_slice_1", "op": "StridedSlice", "input": ["pose/locref_pred/block4/Shape", "pose/locref_pred/block4/strided_slice_1/stack", "pose/locref_pred/block4/strided_slice_1/stack_1", "pose/locref_pred/block4/strided_slice_1/stack_2"], "attr": {"new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "T": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "pose/locref_pred/block4/strided_slice_2", "op": "StridedSlice", "input": ["pose/locref_pred/block4/Shape", "pose/locref_pred/block4/strided_slice_2/stack", "pose/locref_pred/block4/strided_slice_2/stack_1", "pose/locref_pred/block4/strided_slice_2/stack_2"], "attr": {"end_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "shrink_axis_mask": {"i": "1"}, "new_axis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}}}, {"name": "pose/part_pred/block4/strided_slice", "op": "StridedSlice", "input": ["pose/part_pred/block4/Shape", "pose/part_pred/block4/strided_slice/stack", "pose/part_pred/block4/strided_slice/stack_1", "pose/part_pred/block4/strided_slice/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "begin_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "Index": {"type": "DT_INT32"}, "end_mask": {"i": "0"}}}, {"name": "pose/part_pred/block4/strided_slice_1", "op": "StridedSlice", "input": ["pose/part_pred/block4/Shape", "pose/part_pred/block4/strided_slice_1/stack", "pose/part_pred/block4/strided_slice_1/stack_1", "pose/part_pred/block4/strided_slice_1/stack_2"], "attr": {"shrink_axis_mask": {"i": "1"}, "ellipsis_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "end_mask": {"i": "0"}}}, {"name": "pose/part_pred/block4/strided_slice_2", "op": "StridedSlice", "input": ["pose/part_pred/block4/Shape", "pose/part_pred/block4/strided_slice_2/stack", "pose/part_pred/block4/strided_slice_2/stack_1", "pose/part_pred/block4/strided_slice_2/stack_2"], "attr": {"Index": {"type": "DT_INT32"}, "end_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "begin_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "1"}, "T": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/mul", "op": "Mul", "input": ["pose/locref_pred/block4/strided_slice_1", "pose/locref_pred/block4/mul/y"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/mul_1", "op": "Mul", "input": ["pose/locref_pred/block4/strided_slice_2", "pose/locref_pred/block4/mul_1/y"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/mul", "op": "Mul", "input": ["pose/part_pred/block4/strided_slice_1", "pose/part_pred/block4/mul/y"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "pose/part_pred/block4/mul_1", "op": "Mul", "input": ["pose/part_pred/block4/strided_slice_2", "pose/part_pred/block4/mul_1/y"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "pose/locref_pred/block4/stack", "op": "Pack", "input": ["pose/locref_pred/block4/strided_slice", "pose/locref_pred/block4/mul", "pose/locref_pred/block4/mul_1", "pose/locref_pred/block4/stack/3"], "attr": {"T": {"type": "DT_INT32"}, "N": {"i": "4"}, "axis": {"i": "0"}}}, {"name": "pose/part_pred/block4/stack", "op": "Pack", "input": ["pose/part_pred/block4/strided_slice", "pose/part_pred/block4/mul", "pose/part_pred/block4/mul_1", "pose/part_pred/block4/stack/3"], "attr": {"T": {"type": "DT_INT32"}, "axis": {"i": "0"}, "N": {"i": "4"}}}, {"name": "pose/locref_pred/block4/conv2d_transpose", "op": "Conv2DBackpropInput", "input": ["pose/locref_pred/block4/stack", "pose/locref_pred/block4/weights", "resnet_v1_101/block4/unit_3/bottleneck_v1/Relu"], "attr": {"use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}}}, {"name": "pose/part_pred/block4/conv2d_transpose", "op": "Conv2DBackpropInput", "input": ["pose/part_pred/block4/stack", "pose/part_pred/block4/weights", "resnet_v1_101/block4/unit_3/bottleneck_v1/Relu"], "attr": {"padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}}}, {"name": "pose/locref_pred/block4/BiasAdd", "op": "BiasAdd", "input": ["pose/locref_pred/block4/conv2d_transpose", "pose/locref_pred/block4/biases"], "attr": {"data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}}}, {"name": "pose/part_pred/block4/BiasAdd", "op": "BiasAdd", "input": ["pose/part_pred/block4/conv2d_transpose", "pose/part_pred/block4/biases"], "attr": {"data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}}}], "library": {}, "versions": {"minConsumer": 12}}, "weightsManifest": [{"paths": ["group1-shard1of41.bin", "group1-shard2of41.bin", "group1-shard3of41.bin", "group1-shard4of41.bin", "group1-shard5of41.bin", "group1-shard6of41.bin", "group1-shard7of41.bin", "group1-shard8of41.bin", "group1-shard9of41.bin", "group1-shard10of41.bin", "group1-shard11of41.bin", "group1-shard12of41.bin", "group1-shard13of41.bin", "group1-shard14of41.bin", "group1-shard15of41.bin", "group1-shard16of41.bin", "group1-shard17of41.bin", "group1-shard18of41.bin", "group1-shard19of41.bin", "group1-shard20of41.bin", "group1-shard21of41.bin", "group1-shard22of41.bin", "group1-shard23of41.bin", "group1-shard24of41.bin", "group1-shard25of41.bin", "group1-shard26of41.bin", "group1-shard27of41.bin", "group1-shard28of41.bin", "group1-shard29of41.bin", "group1-shard30of41.bin", "group1-shard31of41.bin", "group1-shard32of41.bin", "group1-shard33of41.bin", "group1-shard34of41.bin", "group1-shard35of41.bin", "group1-shard36of41.bin", "group1-shard37of41.bin", "group1-shard38of41.bin", "group1-shard39of41.bin", "group1-shard40of41.bin", "group1-shard41of41.bin"], "weights": [{"name": "pose/locref_pred/block4/strided_slice/stack", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice/stack_1", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice/stack_2", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice_1/stack", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice_1/stack_1", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice_1/stack_2", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/mul/y", "shape": [], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice_2/stack", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice_2/stack_1", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/strided_slice_2/stack_2", "shape": [1], "dtype": "int32"}, {"name": "pose/locref_pred/block4/mul_1/y", "shape": [], "dtype": "int32"}, {"name": "pose/locref_pred/block4/stack/3", "shape": [], "dtype": "int32"}, {"name": "pose/locref_pred/block4/weights", "shape": [3, 3, 8, 2048], "dtype": "float32"}, {"name": "pose/locref_pred/block4/biases", "shape": [8], "dtype": "float32"}, {"name": "pose/part_pred/block4/strided_slice/stack", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice/stack_1", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice/stack_2", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice_1/stack", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice_1/stack_1", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice_1/stack_2", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/mul/y", "shape": [], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice_2/stack", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice_2/stack_1", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/strided_slice_2/stack_2", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/mul_1/y", "shape": [], "dtype": "int32"}, {"name": "pose/part_pred/block4/stack/3", "shape": [], "dtype": "int32"}, {"name": "pose/part_pred/block4/weights", "shape": [3, 3, 4, 2048], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/weights", "shape": [3, 3, 512, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/weights", "shape": [3, 3, 512, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/SpaceToBatchND/block_shape", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_2", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_3/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_4", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_1", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_5/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/weights", "shape": [3, 3, 512, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/BatchToSpaceND/block_shape", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/0/0", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_6/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/crops/1/0", "shape": [], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice/stack_2", "shape": [1], "dtype": "int32"}, {"name": "img_mean", "shape": [1, 1, 1, 3], "dtype": "float32"}, {"name": "resnet_v1_101/Pad/paddings", "shape": [4, 2], "dtype": "int32"}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/Pad/paddings", "shape": [4, 2], "dtype": "int32"}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/Pad/paddings", "shape": [4, 2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/dilation_rate", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/dilation_rate", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/strided_slice_1/stack_2", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/add", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/dilation_rate", "shape": [2], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_1", "shape": [1], "dtype": "int32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/Conv2D/required_space_to_batch_paddings/strided_slice_7/stack_2", "shape": [1], "dtype": "int32"}, {"name": "pose/part_pred/block4/biases", "shape": [4], "dtype": "float32"}, {"name": "resnet_v1_101/conv1/Conv2D_weights", "shape": [7, 7, 3, 64], "dtype": "float32"}, {"name": "resnet_v1_101/conv1/Conv2D_bn_offset", "shape": [64], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "shape": [1, 1, 64, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 64, 64], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [64], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [64], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 64, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 256, 64], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [64], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [64], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 64, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 256, 64], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_23/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [64], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [64], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 64, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "shape": [1, 1, 1024, 2048], "dtype": "float32"}, {"name": "resnet_v1_101/block1/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "shape": [1, 1, 256, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 256, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "shape": [2048], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 128, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 512, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 128, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 512, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 128, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 512, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [128], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 128, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block2/unit_4/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/Conv2D_weights", "shape": [1, 1, 512, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/shortcut/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 512, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 512, 2048], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [2048], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 2048, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_4/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_5/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_6/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_7/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_8/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_9/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 512, 2048], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_2/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [2048], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_10/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 2048, 512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_11/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_12/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_13/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_14/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_15/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_16/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 512, 2048], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_1/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Offset", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [2048], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_17/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_18/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_19/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_20/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_21/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Conv2D_weights", "shape": [1, 1, 1024, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv1/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Conv2D_weights", "shape": [3, 3, 256, 256], "dtype": "float32"}, {"name": "resnet_v1_101/block4/unit_3/bottleneck_v1/conv2/BatchNorm/FusedBatchNormV3/Scaled", "shape": [512], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv2/Conv2D_bn_offset", "shape": [256], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/Conv2D_weights", "shape": [1, 1, 256, 1024], "dtype": "float32"}, {"name": "resnet_v1_101/block3/unit_22/bottleneck_v1/conv3/Conv2D_bn_offset", "shape": [1024], "dtype": "float32"}]}]}
pyu10055 commented 3 years ago

@ByrdOfAFeather this is the model.json file, not the weight files. Weight files are binary. Please check your weight files, usually their size are 4MB.

ByrdOfAFeather commented 3 years ago

@ByrdOfAFeather this is the model.json file, not the weight files. Weight files are binary. Please check your weight files, usually their size are 4MB.

I see, there was an issue in the repository I submitted for the bug. I fixed it and can now load the model. Now I also see that there are no placeholder elements. It is unclear to me how to solve this, I believe I have selected the correct output nodes.

ByrdOfAFeather commented 3 years ago

I went back and used an export function in the software that I was using rather than using my own export function, I now can load the model and have input nodes. https://github.com/DeepLabCut/DeepLabCut/blob/ce681b4073ab1a0bd5823f892ebe0f9c47a0f7f6/deeplabcut/pose_estimation_tensorflow/export.py#L234 For future reference.

Thanks for helping - I'm going to go ahead and close since this seems to be resolved.

google-ml-butler[bot] commented 3 years ago

Are you satisfied with the resolution of your issue? Yes No