- `Softmax`
- Official `tf.nn.softmax` doesn't support input logits with dimension > 5. This limit would fail onnx2tf correction_process_for_accuracy_errors() check, when tf subgraph contains softmax op with input dimension > 5.
- Before `tf.nn.softmax`, reshape the input logits to `[reduce_prod(shape[:axis]), shape[axis]`, `reduce_prod(shape[axis + 1:])]`.
after `tf.nn.softmax`, reshape back to original logits shape.
- Test code: https://github.com/PINTO0309/onnx2tf/blob/main/make_test_op/test_softmax_convert.py
- https://github.com/princeton-vl/RAFT-Stereo
- parameter replacement: [raftstereo-middlebury.zip](https://github.com/PINTO0309/onnx2tf/files/12546289/raftstereo-middlebury.zip)

What's Changed
* tf.nn.softmax doesn't support Dim(logits) > 5 by babiking in https://github.com/PINTO0309/onnx2tf/pull/486
**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.16.12...1.16.13