aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-10-27 13:44:29 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-10-27 14:52:59 -0700
commitcf2eb4cd9a5f8fe0cc7e9ccaf7d2e32c808af703 (patch)
tree611d79c40bbbc9da86c98e67f21b9b338b96c4b4
parentc9df03149f59c4a681c785147d08bf7dc33c0a19 (diff)
Add a few more ops with incorrect shape functions to exception.
Change: 137443699
-rw-r--r--tensorflow/python/framework/importer.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tensorflow/python/framework/importer.py b/tensorflow/python/framework/importer.py
index 8137e7771a..e7f63d3e80 100644
--- a/tensorflow/python/framework/importer.py
+++ b/tensorflow/python/framework/importer.py
@@ -413,8 +413,10 @@ def import_graph_def(graph_def, input_map=None, return_elements=None,
'RefSwitch', 'RefEnter', 'RefNextIteration',
'RefMerge', 'RefIdentity']:
pass
- elif op.type in ['ConditionalAccumulator',
- 'SparseConditionalAccumulator']:
+ elif op.type in [
+ 'ConditionalAccumulator', 'SparseConditionalAccumulator',
+ 'Table'
+ ]:
# This can be removed after 2017/04/24.
pass
else: