summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2022-09-07 19:04:21 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2022-09-07 19:04:21 +0900
commitc690d52bdd137ed6a17353aa7af35e8141ece77b (patch)
treedbb7dd99133132dfbffcb8c9e9af4f1ffc2f4808 /res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py
parent3ad689f0803519e343c36d5700646e86059df961 (diff)
downloadnnfw-accepted/tizen_7.0_unified.tar.gz
nnfw-accepted/tizen_7.0_unified.tar.bz2
nnfw-accepted/tizen_7.0_unified.zip
Diffstat (limited to 'res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py')
-rw-r--r--res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py b/res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py
index 760195063..892796b12 100644
--- a/res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py
+++ b/res/TensorFlowPythonExamples/examples/space_to_batch_nd/__init__.py
@@ -1,5 +1,7 @@
import tensorflow as tf
+tf.compat.v1.disable_eager_execution()
+
in_ = tf.compat.v1.placeholder(tf.float32, shape=[1, 2, 2, 1], name="Hole")
bs_ = tf.constant([2, 2], name="Hole")
pd_ = tf.constant([[0, 0], [0, 0]], name="Hole")