Skip to content

Commit

Permalink
Fixed attribute parameter (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
PENGUINLIONG authored and tqchen committed Oct 19, 2017
1 parent 8d79cfd commit 69bea12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/nnvm/frontend/coreml.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def ConcatLayerParams(op, insyms, symtab):
insyms = [insyms]
if op.sequenceConcat:
raise NotImplementedError("Sequence Concat not supported")
ret = _sym.concatenate(*insyms, dim=1)
ret = _sym.concatenate(*insyms, axis=1)
return ret

def FlattenLayerParams(op, insym, symtab):
Expand Down

0 comments on commit 69bea12

Please sign in to comment.