Skip to content

Commit

Permalink
[FRONTEND][TENSORFLOW] Bugfix (#2326)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicsymes authored and tqchen committed Dec 24, 2018
1 parent a006258 commit e5d92e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions nnvm/python/nnvm/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,9 @@ def _transform_mask(stride_dim, ellipsis_mask):
pass
else:
final_output.append(out_shape[gather_index])
# Prevent 0-dim tensors which are not accepted by nnvm
if not final_output:
final_output.append(1)
return _sym.reshape(out, shape=tuple(final_output))
return _impl

Expand Down Expand Up @@ -1187,8 +1190,8 @@ def from_tensorflow(self, graph, layout="NHWC", shape=None, outputs=None):
raise NotImplementedError( \
"Please freeze the graph with add_shapes=True")
self._outputs_are_0d[node.name] = [ \
not shape if isinstance(shape, list) else False \
for shape in self._output_shapes[node.name]]
not tshape if isinstance(tshape, list) else False \
for tshape in self._output_shapes[node.name]]

if node.op == "Placeholder":
self._nodes[node.name] = _sym.Variable(name=node.name,
Expand Down
1 change: 1 addition & 0 deletions nnvm/tests/python/frontend/tensorflow/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ def test_forward_stridedslice():
_test_stridedslice((3, 4, 5, 4, 5, 6), [1, 2, 0, -3], [4, 5, 3, 3], [2, 2, 1, 1],
'float32', shrink_axis_mask=8, new_axis_mask=1, ellipsis_mask=2, begin_mask=5,
end_mask=8)
_test_stridedslice((1), [0], [1], [1], 'float32', shrink_axis_mask=1)


#######################################################################
Expand Down

0 comments on commit e5d92e1

Please sign in to comment.