Commit ae16a366 by PENGUINLIONG Committed by Tianqi Chen

Fixed attribute parameter (#184)

parent 3833ed2e
...@@ -246,7 +246,7 @@ def ConcatLayerParams(op, insyms, symtab): ...@@ -246,7 +246,7 @@ def ConcatLayerParams(op, insyms, symtab):
insyms = [insyms] insyms = [insyms]
if op.sequenceConcat: if op.sequenceConcat:
raise NotImplementedError("Sequence Concat not supported") raise NotImplementedError("Sequence Concat not supported")
ret = _sym.concatenate(*insyms, dim=1) ret = _sym.concatenate(*insyms, axis=1)
return ret return ret
def FlattenLayerParams(op, insym, symtab): def FlattenLayerParams(op, insym, symtab):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment