- `Reshape`, `Expand`, `Unsqueeze`, `Squeeze`
- Elimination of unnecessary OP sequential processing
From:
[1,81,52,52] -> Reshape [81,52,52] -> Expand [1,81,52,52]
[1,81,52,52] -> Reshape [81,52,52] -> Unsqueeze [1,81,52,52]
[81,52,52] -> Reshape [1,81,52,52] -> Squeeze [81,52,52]
To:
[1,81,52,52]
[1,81,52,52]
[81,52,52]
- `Cast`
- Suppression of `FlexCast` generation
What's Changed
* 1.Elimination of unnecessary OP sequential processing 2.Suppression of FlexCast generation by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/257
**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.7.32...1.7.33