Replacing SoftmaxActivation with SoftmaxOutput

SoftmaxActivation is deprecated: http://beta.mxnet.io/r/api/mx.symbol.SoftmaxActivation.html
I have a model that used it and I probably need to replace it with SoftmaxOutput

Given that SoftmaxActivation was used with the mode of ‘channel’, how do I achieve the same result using SoftmaxOutput?

Thank you

Hey, have you solved this? I also have the same issue.

SoftmaxActivation -> SoftmaxOutput
“mode”: “channel” -> “multi_output”: “1”

or

SoftmaxActivation isn’t supported by ONNX - workaround
SoftmaxActivation -> softmax
“mode”: “channel” -> “axis”: “1”