- `Pad`
- Corresponds to the case where the name attribute is blank
- `Add`, `Div`, `Sub`, `Mul`
- Supports channel conversion
- `Reshape`
- Added the ability to apply Transpose to the tensor after Reshape
`Transpose` is applied to the tensor after the `Reshape` operation with the perm specified as post-processing.
json
{
"format_version": 1,
"operations": [
{
"op_name": "Reshape_25",
"param_target": "outputs",
"param_name": "onnx::InstanceNormalization_270",
"post_process_transpose_perm": [0,2,1] Extrapolate 3D Transpose after Reshape
},
{
"op_name": "Reshape_30",
"param_target": "outputs",
"param_name": "onnx::Mul_275",
"post_process_transpose_perm": [0,2,3,1] Extrapolate 4D Transpose after Reshape
}
]
}
- Corresponds to zero value of shape
- shape = `[0,5,-1]`
- `InstanceNormalization`
- Bias add bug fixes
**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/0.0.32...0.0.33