summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/expand_dims_01/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowPythonExamples/examples/expand_dims_01/__init__.py')
-rw-r--r--res/TensorFlowPythonExamples/examples/expand_dims_01/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/res/TensorFlowPythonExamples/examples/expand_dims_01/__init__.py b/res/TensorFlowPythonExamples/examples/expand_dims_01/__init__.py
index 36c54753b..1b1626a32 100644
--- a/res/TensorFlowPythonExamples/examples/expand_dims_01/__init__.py
+++ b/res/TensorFlowPythonExamples/examples/expand_dims_01/__init__.py
@@ -1,5 +1,7 @@
import tensorflow as tf
+tf.compat.v1.disable_eager_execution()
+
# example 2 where input has unknown dim and axis is const
in_ = tf.compat.v1.placeholder(dtype=tf.int32, shape=(None, None), name="Hole")