Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
softmaxoutput fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Roshrini committed Nov 5, 2018
1 parent 53c5a72 commit 729ccbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/mxnet/contrib/onnx/mx2onnx/_op_translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ def convert_softmax_output(node, **kwargs):
"""Map MXNet's SoftmaxOutput operator attributes to onnx's Softmax operator
and return the created node.
"""
name, _, _ = get_inputs(node, kwargs)
name = node["name"]

input1_idx = kwargs["index_lookup"][node["inputs"][0][0]]
input1 = kwargs["proc_nodes"][input1_idx]
Expand Down

0 comments on commit 729ccbc

Please sign in to comment.