diff --git a/tensorflow_js_demo/.gitignore b/tensorflow_js_demo/.gitignore
new file mode 100644
index 0000000..b6e4761
--- /dev/null
+++ b/tensorflow_js_demo/.gitignore
@@ -0,0 +1,129 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+pip-wheel-metadata/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+db.sqlite3-journal
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IPython
+profile_default/
+ipython_config.py
+
+# pyenv
+.python-version
+
+# pipenv
+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
+# However, in case of collaboration, if having platform-specific dependencies or dependencies
+# having no cross-platform support, pipenv may install dependencies that don't work, or not
+# install all needed dependencies.
+#Pipfile.lock
+
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow
+__pypackages__/
+
+# Celery stuff
+celerybeat-schedule
+celerybeat.pid
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
diff --git a/tensorflow_js_demo/demo.css b/tensorflow_js_demo/demo.css
new file mode 100644
index 0000000..d137ec7
--- /dev/null
+++ b/tensorflow_js_demo/demo.css
@@ -0,0 +1,67 @@
+img .input-image {
+ width: 256px;
+ height: 384px;
+}
+.color-g {
+ color: #db4437;
+}
+.color-p {
+ color: #f4b400;
+}
+.color-s {
+ color: #4285f4;
+}
+.color-w {
+ color: white;
+}
+#perf {
+ color: grey;
+}
+
+#result {
+ width: 256px;
+ height: 384px;
+ border: 1px solid #0f9d58;
+}
+
+.mask {
+ width: 256px;
+ height: 384px;
+}
+
+.arrow {
+ width: 120px;
+}
+
+.line {
+ margin-top: 14px;
+ width: 90px;
+ background: blue;
+ height: 10px;
+ float: left;
+}
+
+.point {
+ width: 0;
+ height: 0;
+ border-top: 20px solid transparent;
+ border-bottom: 20px solid transparent;
+ border-left: 30px solid blue;
+ float: right;
+}
+
+.penpad {
+ z-index: 99;
+ cursor: url(images/pen.png), auto;
+}
+
+.eraserpad {
+ z-index: 99;
+ cursor: url(images/eraser.png), auto;
+}
+
+#predict {
+ font-size: 1.5em;
+ border-radius: 0.2em;
+ padding: 0.3em;
+}
diff --git a/tensorflow_js_demo/example_data/blank.png b/tensorflow_js_demo/example_data/blank.png
new file mode 100644
index 0000000..6e50173
Binary files /dev/null and b/tensorflow_js_demo/example_data/blank.png differ
diff --git a/tensorflow_js_demo/example_data/im1.jpg b/tensorflow_js_demo/example_data/im1.jpg
new file mode 100644
index 0000000..07994ca
Binary files /dev/null and b/tensorflow_js_demo/example_data/im1.jpg differ
diff --git a/tensorflow_js_demo/example_data/im1_mask.png b/tensorflow_js_demo/example_data/im1_mask.png
new file mode 100644
index 0000000..5aa5bca
Binary files /dev/null and b/tensorflow_js_demo/example_data/im1_mask.png differ
diff --git a/tensorflow_js_demo/example_data/im2.jpg b/tensorflow_js_demo/example_data/im2.jpg
new file mode 100644
index 0000000..7737795
Binary files /dev/null and b/tensorflow_js_demo/example_data/im2.jpg differ
diff --git a/tensorflow_js_demo/example_data/im2_mask.png b/tensorflow_js_demo/example_data/im2_mask.png
new file mode 100644
index 0000000..a526f4f
Binary files /dev/null and b/tensorflow_js_demo/example_data/im2_mask.png differ
diff --git a/tensorflow_js_demo/example_data/im3.jpg b/tensorflow_js_demo/example_data/im3.jpg
new file mode 100644
index 0000000..30a5d7d
Binary files /dev/null and b/tensorflow_js_demo/example_data/im3.jpg differ
diff --git a/tensorflow_js_demo/example_data/im3_mask.png b/tensorflow_js_demo/example_data/im3_mask.png
new file mode 100644
index 0000000..c751d79
Binary files /dev/null and b/tensorflow_js_demo/example_data/im3_mask.png differ
diff --git a/tensorflow_js_demo/images/eraser.png b/tensorflow_js_demo/images/eraser.png
new file mode 100644
index 0000000..b90ad87
Binary files /dev/null and b/tensorflow_js_demo/images/eraser.png differ
diff --git a/tensorflow_js_demo/images/pen.png b/tensorflow_js_demo/images/pen.png
new file mode 100644
index 0000000..d437a22
Binary files /dev/null and b/tensorflow_js_demo/images/pen.png differ
diff --git a/tensorflow_js_demo/index.html b/tensorflow_js_demo/index.html
new file mode 100644
index 0000000..7f0dfad
--- /dev/null
+++ b/tensorflow_js_demo/index.html
@@ -0,0 +1,154 @@
+
+
+ HumanGPS TensorFlow.js Demo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HumanG P S : Geodesic Pre Serving Feature for Dense Human Correspondences
+
+
+
+
+
+
+
+
+
+
+
+ HumanG P S
+
+
+ 1. Click Choose File to upload a human image and a mask image (recommended w : h = 256 : 384) or use the example images:
+ 1
+ 2
+ 3
+
+ 2. Click 'Process' button to run the model. You may use
+ Pen ,
+ Brush ,
+ Eraser , and
+ Clear to doodle on the mask image.
+
+ Note that the first time of 'Process' takes longer time for initialization.
+
+
+
+
+
+
+
+
+
+
+ HumanG P S
+
+ Run
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Citation
+
+
BibTeX, 1 KB
+
+
@inproceedings{tan2021humangps,
+ author = {Tan, Feitong and Tang, Danhang and Mingsong, Dou and Kaiwen, Guo and Pandey, Rohit and Keskin, Cem and Du, Ruofei and Sun, Deqing and Bouaziz, Sofien and Fanello, Sean and Tan, Ping and Zhang, Yinda},
+ title = {HumanGPS: Geodesic PreServing Feature for Dense Human Correspondences},
+ booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
+ month = {June},
+ year = {2021}
+}
+
+
+
+
+
+
+
+
+
diff --git a/tensorflow_js_demo/index.js b/tensorflow_js_demo/index.js
new file mode 100644
index 0000000..60c8d56
--- /dev/null
+++ b/tensorflow_js_demo/index.js
@@ -0,0 +1,218 @@
+/**
+ * @license
+ * Copyright 2021 Google LLC. All Rights Reserved.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * =============================================================================
+ */
+let model;
+let info;
+let canvas;
+let image1;
+let mask1;
+let perf;
+let pad;
+const src_images = [image1, mask1];
+const WIDTH = 256;
+const HEIGHT = 384;
+
+const state = {
+ backend: 'webgl'
+};
+
+const gui = new dat.GUI();
+gui.add(state, 'backend', ['webgl', 'wasm']).onChange(async backend => {
+ await tf.setBackend(backend);
+});
+
+function changeImage(input, image_id) {
+ if (input.files && input.files.length > 0) {
+ const reader = new FileReader();
+ reader.onload = function(e) {
+ const originalImg = document.getElementById(image_id);
+ originalImg.setAttribute('src', e.target.result);
+ originalImg.setAttribute('width', WIDTH);
+ originalImg.setAttribute('height', HEIGHT);
+ };
+ if (image_id.indexOf('mask') < 0) {
+ loadMask('blank.png', 'im1_mask');
+ }
+ reader.readAsDataURL(input.files[0]);
+ }
+};
+
+// Loads an image to the img element.
+function loadImage(filename, element_id) {
+ let _img = document.getElementById(element_id);
+ let newImg = new Image;
+ newImg.onload = function() {
+ _img.src = this.src;
+ }
+ newImg.src = 'example_data/' + filename;
+}
+
+// Loads a mask into the mask canvas.
+function loadMask(filename, element_id) {
+ let _mask = document.getElementById(element_id).getContext('2d');
+ let _img = new Image;
+ _img.onload = function() {
+ console.log(_img.width, _img.height, WIDTH, HEIGHT);
+ _mask.drawImage(_img, 0, 0, _img.width, _img.height, 0, 0, WIDTH, HEIGHT);
+ }
+ _img.src = 'example_data/' + filename;
+}
+
+function loadPreset(preset_id) {
+ loadImage('im' + preset_id + '.jpg', 'im1');
+ loadMask('im' + preset_id + '_mask.png', 'im1_mask');
+}
+
+function predict() {
+ // Tests if the model is loaded.
+ if (model == null) {
+ alert('Model is not available!');
+ return;
+ }
+
+ // Tests if an image is missing.
+ for (let src_image in src_images) {
+ if (src_image.height === 0 || src_image.width === 0) {
+ alert('You need to upload an image!');
+ return;
+ }
+ }
+
+ predictButton.textContent = 'Running...';
+ predictButton.disabled = true;
+
+ // Sets timeout = 0 to force reload the UI.
+ setTimeout(function() {
+ const start = Date.now();
+ const ctx = canvas.getContext('2d');
+ ctx.clearRect(0, 0, canvas.width, canvas.height);
+
+ tf.tidy(() => {
+ // TODO: Resize images to [384, 256]; tf.image.resize...
+
+ // Normalizes the values from [0, 255] to [-1, 1], same ranged used during training.
+ const transform = transformValueRange(0, 255, -1, 1);
+
+ // Converts the input image into a 3D tensor with shape [h, w, colorChannel].
+ const image1Tensor = tf.browser.fromPixels(image1);
+ const mask1Tensor = tf.browser.fromPixels(mask1);
+ const image1Float = tf.cast(image1Tensor, 'float32');
+ const mask1Float = tf.cast(mask1Tensor, 'float32');
+
+ const matting1 = tf.sum(mask1Float, /*axis=*/-1, /*keepdims=*/true);
+ const threshold = tf.fill(matting1.shape, 150 * 3);
+ const mask1Bool = tf.greater(matting1, threshold);
+
+ // Masks the image
+ let image1Foreground = tf.where(
+ tf.tile(mask1Bool, [1, 1, 3]),
+ image1Float,
+ tf.zerosLike(image1Float)
+ );
+ image1Foreground = tf.add(
+ tf.mul(image1Foreground, transform.scale),
+ transform.offset);
+
+ // Runs the model.
+ const input = [
+ tf.expandDims(mask1Bool),
+ tf.expandDims(image1Foreground)
+ ];
+
+ const result = model.predict(input);
+ const resultSqueezed = tf.squeeze(result[0]);
+
+ // Adds background.
+ const rgbAndBackground = tf.where(
+ tf.tile(mask1Bool, [1, 1, 3]),
+ resultSqueezed,
+ image1Float
+ );
+
+ // Renders the result on a canvas.
+ const transformBack = transformValueRange(0, 255, 0, 1);
+
+ // Converts back to 0-1.
+ const rgbFinal = tf.add(tf.mul(rgbAndBackground, transformBack.scale), transformBack.offset);
+ tf.browser.toPixels(rgbFinal, canvas);
+ });
+
+ const end = Date.now();
+ const time = end - start;
+ perf.textContent = time + ' ms';
+ predictButton.textContent = 'Process';
+ predictButton.disabled = false;
+ }, 0);
+};
+
+function transformValueRange(
+ fromMin, fromMax, toMin, toMax) {
+ const fromRange = fromMax - fromMin;
+ const ToRange = toMax - toMin;
+ const scale = ToRange / fromRange;
+ const offset = toMin - fromMin * scale;
+ return {scale, offset};
+}
+
+function SetPen() {
+ pad.minWidth = 3;
+ pad.maxWidth = 5;
+ pad.penColor = "rgb(255, 255, 255)";
+ mask1.classList.add("penpad");
+ mask1.classList.remove("eraserpad");
+}
+
+function SetBrush() {
+ pad.minWidth = 10;
+ pad.maxWidth = 15;
+ pad.penColor = "rgb(255, 255, 255)";
+ mask1.classList.add("penpad");
+ mask1.classList.remove("eraserpad");
+}
+
+function SetEraser() {
+ pad.minWidth = 10;
+ pad.maxWidth = 15;
+ pad.penColor = "rgb(0, 0, 0)";
+ mask1.classList.remove("penpad");
+ mask1.classList.add("eraserpad");
+}
+
+function ClearBtn() {
+ loadMask('blank.png', 'im1_mask');
+}
+
+async function setupPage() {
+ predictButton = document.getElementById('predict');
+ canvas = document.getElementById('result');
+ image1 = document.getElementById('im1');
+ mask1 = document.getElementById('im1_mask');
+ perf = document.getElementById('perf');
+ predictButton.textContent = 'Loading...';
+ loadMask('im3_mask.png', 'im1_mask');
+ if (pad == null) pad = new SignaturePad(mask1);
+ SetPen();
+
+ try {
+ model = await tf.loadGraphModel('./model/model.json');
+ } catch(e) {
+ predictButton.textContent = 'Error in loading model.';
+ }
+ predictButton.textContent = 'Process';
+ predictButton.disabled = false;
+};
+
+setupPage();
diff --git a/tensorflow_js_demo/model/group1-shard1of8.bin b/tensorflow_js_demo/model/group1-shard1of8.bin
new file mode 100644
index 0000000..3187052
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard1of8.bin differ
diff --git a/tensorflow_js_demo/model/group1-shard2of8.bin b/tensorflow_js_demo/model/group1-shard2of8.bin
new file mode 100644
index 0000000..0e8f574
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard2of8.bin differ
diff --git a/tensorflow_js_demo/model/group1-shard3of8.bin b/tensorflow_js_demo/model/group1-shard3of8.bin
new file mode 100644
index 0000000..d1dade2
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard3of8.bin differ
diff --git a/tensorflow_js_demo/model/group1-shard4of8.bin b/tensorflow_js_demo/model/group1-shard4of8.bin
new file mode 100644
index 0000000..fa7ac50
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard4of8.bin differ
diff --git a/tensorflow_js_demo/model/group1-shard5of8.bin b/tensorflow_js_demo/model/group1-shard5of8.bin
new file mode 100644
index 0000000..50dbf98
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard5of8.bin differ
diff --git a/tensorflow_js_demo/model/group1-shard6of8.bin b/tensorflow_js_demo/model/group1-shard6of8.bin
new file mode 100644
index 0000000..946a2b5
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard6of8.bin differ
diff --git a/tensorflow_js_demo/model/group1-shard7of8.bin b/tensorflow_js_demo/model/group1-shard7of8.bin
new file mode 100644
index 0000000..6753bb7
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard7of8.bin differ
diff --git a/tensorflow_js_demo/model/group1-shard8of8.bin b/tensorflow_js_demo/model/group1-shard8of8.bin
new file mode 100644
index 0000000..4a791d9
Binary files /dev/null and b/tensorflow_js_demo/model/group1-shard8of8.bin differ
diff --git a/tensorflow_js_demo/model/model.json b/tensorflow_js_demo/model/model.json
new file mode 100644
index 0000000..2349c0e
--- /dev/null
+++ b/tensorflow_js_demo/model/model.json
@@ -0,0 +1 @@
+{"format": "graph-model", "generatedBy": "2.3.0", "convertedBy": "TensorFlow.js Converter v2.4.0", "userDefinedMetadata": {"signature": {"inputs": {"input_2:0": {"name": "input_2:0", "dtype": "DT_BOOL", "tensorShape": {"dim": [{"size": "-1"}, {"size": "384"}, {"size": "256"}, {"size": "1"}]}}, "input_1:0": {"name": "input_1:0", "dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "-1"}, {"size": "384"}, {"size": "256"}, {"size": "3"}]}}}, "outputs": {"Identity_1:0": {"name": "Identity_1:0", "dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "-1"}, {"size": "384"}, {"size": "256"}, {"size": "3"}]}}, "Identity:0": {"name": "Identity:0", "dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "-1"}, {"size": "384"}, {"size": "256"}, {"size": "16"}]}}}}}, "modelTopology": {"node": [{"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_147", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "32"}, {"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_148", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_149", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "32"}, {"size": "32"}]}}}}}, {"name": "unknown_150", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_141", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "80"}, {"size": "32"}]}}}}}, {"name": "unknown_142", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_143", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "32"}, {"size": "32"}]}}}}}, {"name": "unknown_144", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_135", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_136", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_137", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_138", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_129", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_130", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_131", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_132", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_123", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "96"}, {"size": "96"}]}}}}}, {"name": "unknown_124", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_125", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "96"}, {"size": "96"}]}}}}}, {"name": "unknown_126", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_117", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "192"}, {"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_118", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_119", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "96"}, {"size": "96"}]}}}}}, {"name": "unknown_120", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_111", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_112", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_113", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_114", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_105", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "224"}, {"size": "128"}]}}}}}, {"name": "unknown_106", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_107", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_108", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_99", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_100", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_101", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_102", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_93", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "324"}, {"size": "128"}]}}}}}, {"name": "unknown_94", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_95", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_96", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_87", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_88", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_89", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_90", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_81", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "324"}, {"size": "196"}]}}}}}, {"name": "unknown_82", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_83", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_84", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_71", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}}}, {"name": "unknown_72", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_73", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}}}, {"name": "unknown_74", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_65", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_66", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_67", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}}}, {"name": "unknown_68", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_69", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_70", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_75", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "196"}, {"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_76", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_77", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}}}, {"name": "unknown_78", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_79", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "196"}, {"size": "196"}]}}}}}, {"name": "unknown_80", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_59", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_60", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_61", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_62", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_53", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_54", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_55", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_56", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_57", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_58", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_63", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_64", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat/axis", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "unknown_85", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "324"}, {"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_86", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_91", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "196"}, {"size": "196"}]}}}}}, {"name": "unknown_92", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "196"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_47", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_48", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_49", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_50", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_41", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "96"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_42", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_43", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_44", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "unknown_45", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "96"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_46", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_51", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "128"}]}}}}}, {"name": "unknown_52", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1/axis", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "unknown_97", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "324"}, {"size": "128"}]}}}}}, {"name": "unknown_98", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_103", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_104", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_35", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "96"}, {"size": "96"}]}}}}}, {"name": "unknown_36", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_37", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "96"}, {"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_38", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_29", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "96"}]}}}}}, {"name": "unknown_30", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_31", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "96"}, {"size": "96"}]}}}}}, {"name": "unknown_32", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}}}, {"name": "unknown_33", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "96"}]}}}}}, {"name": "unknown_34", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_39", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "96"}, {"size": "96"}]}}}}}, {"name": "unknown_40", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2/axis", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "unknown_109", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "224"}, {"size": "128"}]}}}}}, {"name": "unknown_110", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_115", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_116", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_3", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_23", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}}}, {"name": "unknown_24", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_25", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}}}, {"name": "unknown_26", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_17", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "32"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_18", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_19", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}}}, {"name": "unknown_20", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "unknown_21", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "32"}, {"size": "64"}]}}}}}, {"name": "unknown_22", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_27", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_28", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3/axis", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_121", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "192"}, {"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_122", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_127", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "96"}, {"size": "96"}]}}}}}, {"name": "unknown_128", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "96"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack_1", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack_2", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_4", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_11", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "32"}, {"size": "32"}]}}}}}, {"name": "unknown_12", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_13", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "32"}, {"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_14", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_5", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "16"}, {"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_6", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_7", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "32"}, {"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_8", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_9", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "16"}, {"size": "32"}]}}}}}, {"name": "unknown_10", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_15", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "32"}, {"size": "32"}]}}}}}, {"name": "unknown_16", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4/axis", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_133", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_134", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_139", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "64"}]}}}}}, {"name": "unknown_140", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "1"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_5", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "3"}, {"size": "16"}]}}}}}, {"name": "unknown_0", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "16"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "unknown_1", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "16"}, {"size": "16"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_2", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "16"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/variance/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/add/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_3", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "3"}, {"size": "16"}]}}}}}, {"name": "unknown_4", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "16"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5/axis", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "unknown_145", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "80"}, {"size": "32"}]}}}}}, {"name": "unknown_146", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_151", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "32"}, {"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "unknown_152", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "32"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/mean/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/variance/reduction_indices", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/add/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "unknown_163", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "32"}, {"size": "16"}]}}}}}, {"name": "unknown_164", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "16"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Sum/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Maximum/y", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}}}, {"name": "input_1", "op": "Placeholder", "attr": {"shape": {"shape": {"dim": [{"size": "-1"}, {"size": "384"}, {"size": "256"}, {"size": "3"}]}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "input_2", "op": "Placeholder", "attr": {"shape": {"shape": {"dim": [{"size": "-1"}, {"size": "384"}, {"size": "256"}, {"size": "1"}]}}, "dtype": {"type": "DT_BOOL"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d/BiasAdd", "op": "_FusedConv2D", "input": ["input_1", "unknown", "unknown_0"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d_2/BiasAdd", "op": "_FusedConv2D", "input": ["input_1", "unknown_3", "unknown_4"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d_2/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d_2/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d_2/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/re_lu/Relu", "op": "Relu", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/conv2d_1/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/re_lu/Relu", "unknown_1", "unknown_2"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/conv2d_1/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/conv2d_5/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/add", "unknown_9", "unknown_10"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/conv2d_5/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/conv2d_5/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/re_lu_1/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_5", "unknown_6"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "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"}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/conv2d_5/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/re_lu_1/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/re_lu_1/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/re_lu_1/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/re_lu_1/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_7", "unknown_8"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/re_lu_1/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/mul"], "attr": {"T": {"type": "DT_FLOAT"}, "N": {"i": "2"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/conv2d_8/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_15", "unknown_16"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/conv2d_8/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/conv2d_8/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/conv2d_8/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/re_lu_2/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_11", "unknown_12"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/re_lu_2/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/re_lu_2/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/re_lu_2/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/re_lu_2/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_13", "unknown_14"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/re_lu_2/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/conv2d_11/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/add", "unknown_21", "unknown_22"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/conv2d_11/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/conv2d_11/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/re_lu_3/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_17", "unknown_18"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/conv2d_11/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/re_lu_3/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/re_lu_3/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/re_lu_3/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/re_lu_3/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_19", "unknown_20"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/re_lu_3/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/mul"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/conv2d_14/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_27", "unknown_28"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/conv2d_14/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/conv2d_14/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/conv2d_14/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/re_lu_4/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_23", "unknown_24"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/re_lu_4/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/re_lu_4/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/re_lu_4/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/re_lu_4/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_25", "unknown_26"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/re_lu_4/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/conv2d_17/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/add", "unknown_33", "unknown_34"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/conv2d_17/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/conv2d_17/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/re_lu_5/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_29", "unknown_30"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/conv2d_17/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/re_lu_5/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/re_lu_5/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/re_lu_5/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/re_lu_5/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_31", "unknown_32"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/re_lu_5/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/mul"], "attr": {"N": {"i": "2"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/conv2d_20/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_39", "unknown_40"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "2", "2", "1"]}}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/conv2d_20/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/conv2d_20/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/conv2d_20/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/re_lu_6/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_35", "unknown_36"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/re_lu_6/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/re_lu_6/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/re_lu_6/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/re_lu_6/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_37", "unknown_38"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"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}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/re_lu_6/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/conv2d_23/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/add", "unknown_45", "unknown_46"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/conv2d_23/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/conv2d_23/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/re_lu_7/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_41", "unknown_42"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/conv2d_23/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/re_lu_7/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/re_lu_7/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/re_lu_7/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/re_lu_7/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_43", "unknown_44"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/re_lu_7/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/mul"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/conv2d_26/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_51", "unknown_52"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/conv2d_26/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/conv2d_26/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/conv2d_26/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/re_lu_8/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_47", "unknown_48"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/re_lu_8/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/re_lu_8/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/re_lu_8/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/re_lu_8/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_49", "unknown_50"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/re_lu_8/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/conv2d_29/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/add", "unknown_57", "unknown_58"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/conv2d_29/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/conv2d_29/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/re_lu_9/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_53", "unknown_54"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/conv2d_29/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/re_lu_9/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/re_lu_9/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/re_lu_9/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/re_lu_9/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_55", "unknown_56"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/re_lu_9/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/mul"], "attr": {"T": {"type": "DT_FLOAT"}, "N": {"i": "2"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/conv2d_32/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_63", "unknown_64"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/conv2d_32/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/conv2d_32/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/conv2d_32/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/re_lu_10/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_59", "unknown_60"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/re_lu_10/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/re_lu_10/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/re_lu_10/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/re_lu_10/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_61", "unknown_62"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/re_lu_10/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/conv2d_35/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/add", "unknown_69", "unknown_70"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/conv2d_35/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/conv2d_35/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/re_lu_11/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_65", "unknown_66"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/conv2d_35/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/re_lu_11/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/re_lu_11/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/re_lu_11/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/re_lu_11/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_67", "unknown_68"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/re_lu_11/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/mul"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "N": {"i": "2"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/conv2d_38/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_75", "unknown_76"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/conv2d_38/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/conv2d_38/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/conv2d_38/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/re_lu_12/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_71", "unknown_72"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/re_lu_12/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/re_lu_12/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/re_lu_12/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/re_lu_12/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_73", "unknown_74"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/re_lu_12/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/re_lu_25/Relu", "op": "Relu", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/conv2d_75/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/re_lu_25/Relu", "unknown_77", "unknown_78"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/conv2d_75/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/conv2d_75/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/conv2d_75/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/re_lu_26/Relu", "op": "Relu", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/conv2d_76/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/re_lu_26/Relu", "unknown_79", "unknown_80"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape", "op": "Shape", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/conv2d_76/BiasAdd"], "attr": {"out_type": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice", "op": "StridedSlice", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack_2"], "attr": {"end_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "shrink_axis_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize/ResizeNearestNeighbor", "op": "ResizeNearestNeighbor", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/conv2d_76/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul"], "attr": {"align_corners": {"b": false}, "T": {"type": "DT_FLOAT"}, "half_pixel_centers": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat", "op": "ConcatV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize/ResizeNearestNeighbor", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat/axis"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/conv2d_41/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat", "unknown_85", "unknown_86"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/conv2d_41/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/conv2d_41/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/re_lu_13/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_81", "unknown_82"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/conv2d_41/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/re_lu_13/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/re_lu_13/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/re_lu_13/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/re_lu_13/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_83", "unknown_84"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/re_lu_13/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/mul"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/conv2d_44/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_91", "unknown_92"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/conv2d_44/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/conv2d_44/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/re_lu_14/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_87", "unknown_88"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/conv2d_44/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/re_lu_14/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/re_lu_14/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/re_lu_14/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/re_lu_14/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_89", "unknown_90"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/re_lu_14/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/mul"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_1", "op": "Shape", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/ArithmeticOptimizer/AddOpsRewrite_add"], "attr": {"T": {"type": "DT_FLOAT"}, "out_type": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1", "op": "StridedSlice", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack_2"], "attr": {"end_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "Index": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "0"}, "begin_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_1"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_1/ResizeNearestNeighbor", "op": "ResizeNearestNeighbor", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_1"], "attr": {"half_pixel_centers": {"b": true}, "align_corners": {"b": false}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1", "op": "ConcatV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_1/ResizeNearestNeighbor", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1/axis"], "attr": {"N": {"i": "2"}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/conv2d_47/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1", "unknown_97", "unknown_98"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/conv2d_47/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/conv2d_47/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/re_lu_15/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_93", "unknown_94"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/conv2d_47/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/re_lu_15/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/re_lu_15/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/re_lu_15/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/re_lu_15/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_95", "unknown_96"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/re_lu_15/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/mul"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/conv2d_50/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_103", "unknown_104"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/conv2d_50/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/conv2d_50/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/re_lu_16/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_99", "unknown_100"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/conv2d_50/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/re_lu_16/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/re_lu_16/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/re_lu_16/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/re_lu_16/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_101", "unknown_102"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "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"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/re_lu_16/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/mul"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_2", "op": "Shape", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/ArithmeticOptimizer/AddOpsRewrite_add"], "attr": {"T": {"type": "DT_FLOAT"}, "out_type": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2", "op": "StridedSlice", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_2", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack_2"], "attr": {"begin_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "shrink_axis_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_2", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_2"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_2/ResizeNearestNeighbor", "op": "ResizeNearestNeighbor", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_2"], "attr": {"align_corners": {"b": false}, "T": {"type": "DT_FLOAT"}, "half_pixel_centers": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2", "op": "ConcatV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_2/ResizeNearestNeighbor", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2/axis"], "attr": {"Tidx": {"type": "DT_INT32"}, "N": {"i": "2"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/conv2d_53/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2", "unknown_109", "unknown_110"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/conv2d_53/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/conv2d_53/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/re_lu_17/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_105", "unknown_106"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/conv2d_53/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/re_lu_17/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/re_lu_17/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/re_lu_17/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/re_lu_17/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_107", "unknown_108"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/re_lu_17/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/mul"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/conv2d_56/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_115", "unknown_116"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/conv2d_56/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/conv2d_56/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/re_lu_18/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_111", "unknown_112"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/conv2d_56/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/re_lu_18/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/re_lu_18/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/re_lu_18/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/re_lu_18/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_113", "unknown_114"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/re_lu_18/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/mul"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_3", "op": "Shape", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/ArithmeticOptimizer/AddOpsRewrite_add"], "attr": {"out_type": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3", "op": "StridedSlice", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_3", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack_2"], "attr": {"T": {"type": "DT_INT32"}, "new_axis_mask": {"i": "0"}, "end_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_3", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_3"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_3/ResizeNearestNeighbor", "op": "ResizeNearestNeighbor", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_3"], "attr": {"half_pixel_centers": {"b": true}, "align_corners": {"b": false}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3", "op": "ConcatV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_3/ResizeNearestNeighbor", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3/axis"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/conv2d_59/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3", "unknown_121", "unknown_122"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/conv2d_59/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/conv2d_59/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/re_lu_19/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_117", "unknown_118"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/conv2d_59/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/re_lu_19/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/re_lu_19/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/re_lu_19/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/re_lu_19/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_119", "unknown_120"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/re_lu_19/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/mul"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/conv2d_62/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_127", "unknown_128"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/conv2d_62/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/conv2d_62/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/re_lu_20/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_123", "unknown_124"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/conv2d_62/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/re_lu_20/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/re_lu_20/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/re_lu_20/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/re_lu_20/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_125", "unknown_126"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/re_lu_20/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/mul"], "attr": {"T": {"type": "DT_FLOAT"}, "N": {"i": "2"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_4", "op": "Shape", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/ArithmeticOptimizer/AddOpsRewrite_add"], "attr": {"out_type": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4", "op": "StridedSlice", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_4", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack_2"], "attr": {"ellipsis_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}, "T": {"type": "DT_INT32"}, "end_mask": {"i": "0"}, "shrink_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_4", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_4"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_4/ResizeNearestNeighbor", "op": "ResizeNearestNeighbor", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_4"], "attr": {"align_corners": {"b": false}, "T": {"type": "DT_FLOAT"}, "half_pixel_centers": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4", "op": "ConcatV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_4/ResizeNearestNeighbor", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4/axis"], "attr": {"N": {"i": "2"}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/conv2d_65/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4", "unknown_133", "unknown_134"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/conv2d_65/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/conv2d_65/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/re_lu_21/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_129", "unknown_130"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/conv2d_65/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/re_lu_21/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/re_lu_21/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/re_lu_21/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/re_lu_21/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_131", "unknown_132"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "padding": {"s": "U0FNRQ=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/re_lu_21/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/mul"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/conv2d_68/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_139", "unknown_140"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/conv2d_68/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/conv2d_68/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/variance/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/re_lu_22/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_135", "unknown_136"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/conv2d_68/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/re_lu_22/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/re_lu_22/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/re_lu_22/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/re_lu_22/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_137", "unknown_138"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "padding": {"s": "U0FNRQ=="}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/re_lu_22/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/mul"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}, "N": {"i": "2"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_5", "op": "Shape", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/ArithmeticOptimizer/AddOpsRewrite_add"], "attr": {"out_type": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5", "op": "StridedSlice", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Shape_5", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack_2"], "attr": {"T": {"type": "DT_INT32"}, "end_mask": {"i": "0"}, "ellipsis_mask": {"i": "0"}, "shrink_axis_mask": {"i": "0"}, "Index": {"type": "DT_INT32"}, "begin_mask": {"i": "0"}, "new_axis_mask": {"i": "0"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_5", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_5"], "attr": {"T": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_5/ResizeNearestNeighbor", "op": "ResizeNearestNeighbor", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/mul_5"], "attr": {"align_corners": {"b": false}, "T": {"type": "DT_FLOAT"}, "half_pixel_centers": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5", "op": "ConcatV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/resize_5/ResizeNearestNeighbor", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5/axis"], "attr": {"N": {"i": "2"}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/conv2d_71/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5", "unknown_145", "unknown_146"], "device": "/device:CPU:0", "attr": {"padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "explicit_paddings": {"list": {}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/conv2d_71/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/conv2d_71/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/re_lu_23/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_141", "unknown_142"], "device": "/device:CPU:0", "attr": {"T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "explicit_paddings": {"list": {}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/conv2d_71/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/re_lu_23/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/mean/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/re_lu_23/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/re_lu_23/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/re_lu_23/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_143", "unknown_144"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "padding": {"s": "U0FNRQ=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/re_lu_23/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/mul"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/mean/reduction_indices"], "attr": {"keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/conv2d_74/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_151", "unknown_152"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "T": {"type": "DT_FLOAT"}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/ArithmeticOptimizer/AddOpsRewrite_add", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/conv2d_74/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/Neg", "op": "Neg", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/conv2d_74/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/variance/reduction_indices"], "attr": {"keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/re_lu_24/Relu", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_147", "unknown_148"], "device": "/device:CPU:0", "attr": {"explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "epsilon": {"f": 0.0}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "U0FNRQ=="}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/mul_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/Neg", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/conv2d_74/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/mean", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/re_lu_24/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/mean/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/SquaredDifference", "op": "SquaredDifference", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/re_lu_24/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1", "op": "Sub", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/re_lu_24/Relu", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/mean"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/variance", "op": "Mean", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/SquaredDifference", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/variance/reduction_indices"], "attr": {"Tidx": {"type": "DT_INT32"}, "keep_dims": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/variance", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/add"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/Rsqrt", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Add_add_1"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/re_lu_24/Relu_1", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/ArithmeticOptimizer/HoistCommonFactor_Mul_add_1", "unknown_149", "unknown_150"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "T": {"type": "DT_FLOAT"}, "padding": {"s": "U0FNRQ=="}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "epsilon": {"f": 0.0}, "explicit_paddings": {"list": {}}, "data_format": {"s": "TkhXQw=="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add", "op": "AddN", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/re_lu_24/Relu_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/mul"], "attr": {"N": {"i": "2"}, "T": {"type": "DT_FLOAT"}, "_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/ArithmeticOptimizer/AddOpsRewrite_add", "op": "Add", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/mul_1", "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/ArithmeticOptimizer/AddOpsRewrite_Leaf_1_add"], "attr": {"_grappler_ArithmeticOptimizer_AddOpsRewriteStage": {"b": true}, "T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d_82/BiasAdd", "op": "_FusedConv2D", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/ArithmeticOptimizer/AddOpsRewrite_add", "unknown_163", "unknown_164"], "device": "/device:CPU:0", "attr": {"fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "padding": {"s": "U0FNRQ=="}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "use_cudnn_on_gpu": {"b": true}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "epsilon": {"f": 0.0}, "num_args": {"i": "1"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Square", "op": "Square", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d_82/BiasAdd"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Sum", "op": "Sum", "input": ["StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Square", "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Sum/reduction_indices"], "attr": {"T": {"type": "DT_FLOAT"}, "keep_dims": {"b": true}, "Tidx": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Maximum", "op": "Maximum", "input": ["StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Sum", "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Maximum/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Rsqrt", "op": "Rsqrt", "input": ["StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Maximum"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/ResUNet/conv2d_82/BiasAdd", "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Rsqrt"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input_control_node/_172", "op": "NoOp", "input": ["^input_2", "^StatefulPartitionedCall/GeoFeatureNet/l2_normalize"]}, {"name": "Identity", "op": "Identity", "input": ["StatefulPartitionedCall/GeoFeatureNet/l2_normalize", "^Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input_control_node/_172"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/Tile/multiples", "op": "Const", "input": ["^Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input_control_node/_172"], "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "4"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input/_175", "op": "Const", "input": ["^Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input_control_node/_172"], "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "16"}, {"size": "3"}]}}}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/ones_like/Const", "op": "Const", "input": ["^Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input_control_node/_172"], "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/mul/y", "op": "Const", "input": ["^Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input_control_node/_172"], "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/add/y", "op": "Const", "input": ["^Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input_control_node/_172"], "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/Tile", "op": "Tile", "input": ["input_2", "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/Tile/multiples"], "attr": {"Tmultiples": {"type": "DT_INT32"}, "T": {"type": "DT_BOOL"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/MatMul", "op": "BatchMatMulV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/l2_normalize", "Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input/_175"], "attr": {"T": {"type": "DT_FLOAT"}, "adj_y": {"b": false}, "adj_x": {"b": false}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/ones_like/Shape", "op": "Shape", "input": ["StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/MatMul"], "attr": {"T": {"type": "DT_FLOAT"}, "out_type": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/ones_like", "op": "Fill", "input": ["StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/ones_like/Shape", "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/ones_like/Const"], "attr": {"T": {"type": "DT_FLOAT"}, "index_type": {"type": "DT_INT32"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/SelectV2", "op": "SelectV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/Tile", "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/MatMul", "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/ones_like"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/mul", "op": "Mul", "input": ["StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/SelectV2", "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/mul/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/add", "op": "AddV2", "input": ["StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/mul", "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/add/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "Identity_1", "op": "Identity", "input": ["StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/add"], "attr": {"T": {"type": "DT_FLOAT"}}}], "library": {}, "versions": {"producer": 440}}, "weightsManifest": [{"paths": ["group1-shard1of8.bin", "group1-shard2of8.bin", "group1-shard3of8.bin", "group1-shard4of8.bin", "group1-shard5of8.bin", "group1-shard6of8.bin", "group1-shard7of8.bin", "group1-shard8of8.bin"], "weights": [{"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_71/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_147", "shape": [3, 3, 32, 32], "dtype": "float32"}, {"name": "unknown_148", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_72/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_149", "shape": [3, 3, 32, 32], "dtype": "float32"}, {"name": "unknown_150", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_68/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_141", "shape": [3, 3, 80, 32], "dtype": "float32"}, {"name": "unknown_142", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_69/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_143", "shape": [3, 3, 32, 32], "dtype": "float32"}, {"name": "unknown_144", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_65/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_135", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "unknown_136", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_66/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_137", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "unknown_138", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_62/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_129", "shape": [3, 3, 128, 64], "dtype": "float32"}, {"name": "unknown_130", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_63/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_131", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "unknown_132", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_59/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_123", "shape": [3, 3, 96, 96], "dtype": "float32"}, {"name": "unknown_124", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_60/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_125", "shape": [3, 3, 96, 96], "dtype": "float32"}, {"name": "unknown_126", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_56/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_117", "shape": [3, 3, 192, 96], "dtype": "float32"}, {"name": "unknown_118", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_57/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_119", "shape": [3, 3, 96, 96], "dtype": "float32"}, {"name": "unknown_120", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_53/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_111", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_112", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_54/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_113", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_114", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_50/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_105", "shape": [3, 3, 224, 128], "dtype": "float32"}, {"name": "unknown_106", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_51/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_107", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_108", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_47/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_99", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_100", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_48/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_101", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_102", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_44/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_93", "shape": [3, 3, 324, 128], "dtype": "float32"}, {"name": "unknown_94", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_45/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_95", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_96", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_41/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_87", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_88", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_42/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_89", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_90", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_38/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_81", "shape": [3, 3, 324, 196], "dtype": "float32"}, {"name": "unknown_82", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_39/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_83", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_84", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_35/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_71", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_72", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_36/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_73", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_74", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_32/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_65", "shape": [3, 3, 128, 196], "dtype": "float32"}, {"name": "unknown_66", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_33/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_67", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_68", "shape": [196], "dtype": "float32"}, {"name": "unknown_69", "shape": [1, 1, 128, 196], "dtype": "float32"}, {"name": "unknown_70", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_10/instance_normalization_34/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_75", "shape": [1, 1, 196, 196], "dtype": "float32"}, {"name": "unknown_76", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_6/residual_block_11/instance_normalization_37/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_13/instance_normalization_74/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_77", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_78", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_14/instance_normalization_75/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_79", "shape": [3, 3, 196, 196], "dtype": "float32"}, {"name": "unknown_80", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack_1", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice/stack_2", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_29/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_59", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_60", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_30/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_61", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_62", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_26/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_53", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_54", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_27/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_55", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_56", "shape": [128], "dtype": "float32"}, {"name": "unknown_57", "shape": [1, 1, 128, 128], "dtype": "float32"}, {"name": "unknown_58", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_8/instance_normalization_28/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_63", "shape": [1, 1, 128, 128], "dtype": "float32"}, {"name": "unknown_64", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_5/residual_block_9/instance_normalization_31/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat/axis", "shape": [], "dtype": "int32"}, {"name": "unknown_85", "shape": [1, 1, 324, 196], "dtype": "float32"}, {"name": "unknown_86", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_12/instance_normalization_40/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_91", "shape": [1, 1, 196, 196], "dtype": "float32"}, {"name": "unknown_92", "shape": [196], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_7/residual_block_13/instance_normalization_43/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack_1", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_1/stack_2", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_1", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_23/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_47", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_48", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_24/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_49", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_50", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_20/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_41", "shape": [3, 3, 96, 128], "dtype": "float32"}, {"name": "unknown_42", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_21/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_43", "shape": [3, 3, 128, 128], "dtype": "float32"}, {"name": "unknown_44", "shape": [128], "dtype": "float32"}, {"name": "unknown_45", "shape": [1, 1, 96, 128], "dtype": "float32"}, {"name": "unknown_46", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_6/instance_normalization_22/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_51", "shape": [1, 1, 128, 128], "dtype": "float32"}, {"name": "unknown_52", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_4/residual_block_7/instance_normalization_25/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_1/axis", "shape": [], "dtype": "int32"}, {"name": "unknown_97", "shape": [1, 1, 324, 128], "dtype": "float32"}, {"name": "unknown_98", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_14/instance_normalization_46/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_103", "shape": [1, 1, 128, 128], "dtype": "float32"}, {"name": "unknown_104", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_8/residual_block_15/instance_normalization_49/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack_1", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_2/stack_2", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_2", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_17/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_35", "shape": [3, 3, 96, 96], "dtype": "float32"}, {"name": "unknown_36", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_18/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_37", "shape": [3, 3, 96, 96], "dtype": "float32"}, {"name": "unknown_38", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_14/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_29", "shape": [3, 3, 64, 96], "dtype": "float32"}, {"name": "unknown_30", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_15/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_31", "shape": [3, 3, 96, 96], "dtype": "float32"}, {"name": "unknown_32", "shape": [96], "dtype": "float32"}, {"name": "unknown_33", "shape": [1, 1, 64, 96], "dtype": "float32"}, {"name": "unknown_34", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_4/instance_normalization_16/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_39", "shape": [1, 1, 96, 96], "dtype": "float32"}, {"name": "unknown_40", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_3/residual_block_5/instance_normalization_19/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_2/axis", "shape": [], "dtype": "int32"}, {"name": "unknown_109", "shape": [1, 1, 224, 128], "dtype": "float32"}, {"name": "unknown_110", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_16/instance_normalization_52/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_115", "shape": [1, 1, 128, 128], "dtype": "float32"}, {"name": "unknown_116", "shape": [128], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_9/residual_block_17/instance_normalization_55/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack_1", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_3/stack_2", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_3", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_11/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_23", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "unknown_24", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_12/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_25", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "unknown_26", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_8/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_17", "shape": [3, 3, 32, 64], "dtype": "float32"}, {"name": "unknown_18", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_9/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_19", "shape": [3, 3, 64, 64], "dtype": "float32"}, {"name": "unknown_20", "shape": [64], "dtype": "float32"}, {"name": "unknown_21", "shape": [1, 1, 32, 64], "dtype": "float32"}, {"name": "unknown_22", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_2/instance_normalization_10/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_27", "shape": [1, 1, 64, 64], "dtype": "float32"}, {"name": "unknown_28", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_2/residual_block_3/instance_normalization_13/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_3/axis", "shape": [], "dtype": "int32"}, {"name": "unknown_121", "shape": [1, 1, 192, 96], "dtype": "float32"}, {"name": "unknown_122", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_18/instance_normalization_58/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_127", "shape": [1, 1, 96, 96], "dtype": "float32"}, {"name": "unknown_128", "shape": [96], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_10/residual_block_19/instance_normalization_61/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack_1", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_4/stack_2", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_4", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_5/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_11", "shape": [3, 3, 32, 32], "dtype": "float32"}, {"name": "unknown_12", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_6/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_13", "shape": [3, 3, 32, 32], "dtype": "float32"}, {"name": "unknown_14", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_2/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_5", "shape": [3, 3, 16, 32], "dtype": "float32"}, {"name": "unknown_6", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_3/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_7", "shape": [3, 3, 32, 32], "dtype": "float32"}, {"name": "unknown_8", "shape": [32], "dtype": "float32"}, {"name": "unknown_9", "shape": [1, 1, 16, 32], "dtype": "float32"}, {"name": "unknown_10", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block/instance_normalization_4/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_15", "shape": [1, 1, 32, 32], "dtype": "float32"}, {"name": "unknown_16", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_1/residual_block_1/instance_normalization_7/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_4/axis", "shape": [], "dtype": "int32"}, {"name": "unknown_133", "shape": [1, 1, 128, 64], "dtype": "float32"}, {"name": "unknown_134", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_20/instance_normalization_64/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_139", "shape": [1, 1, 64, 64], "dtype": "float32"}, {"name": "unknown_140", "shape": [64], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_11/residual_block_21/instance_normalization_67/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack_1", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/strided_slice_5/stack_2", "shape": [1], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/upsample/Const_5", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown", "shape": [3, 3, 3, 16], "dtype": "float32"}, {"name": "unknown_0", "shape": [16], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential/instance_normalization/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "unknown_1", "shape": [3, 3, 16, 16], "dtype": "float32"}, {"name": "unknown_2", "shape": [16], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_3", "shape": [1, 1, 3, 16], "dtype": "float32"}, {"name": "unknown_4", "shape": [16], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/instance_normalization_1/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/concatenate/concat_5/axis", "shape": [], "dtype": "int32"}, {"name": "unknown_145", "shape": [1, 1, 80, 32], "dtype": "float32"}, {"name": "unknown_146", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_22/instance_normalization_70/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_151", "shape": [1, 1, 32, 32], "dtype": "float32"}, {"name": "unknown_152", "shape": [32], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/mean/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/moments/variance/reduction_indices", "shape": [2], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/ResUNet/sequential_12/residual_block_23/instance_normalization_73/batchnorm/add/y", "shape": [], "dtype": "float32"}, {"name": "unknown_163", "shape": [1, 1, 32, 16], "dtype": "float32"}, {"name": "unknown_164", "shape": [16], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Sum/reduction_indices", "shape": [], "dtype": "int32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/l2_normalize/Maximum/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/Tile/multiples", "shape": [4], "dtype": "int32"}, {"name": "Func/StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/input/_175", "shape": [16, 3], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/ones_like/Const", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/mul/y", "shape": [], "dtype": "float32"}, {"name": "StatefulPartitionedCall/GeoFeatureNet/StatefulPartitionedCall/add/y", "shape": [], "dtype": "float32"}]}]}
\ No newline at end of file