Onnx2tf

Latest version: v1.27.1

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 59 of 86

1.3.9

1. Support for `Inverse`
![image](https://user-images.githubusercontent.com/33194443/210164800-84ed83f4-6172-431c-90d6-ccc9ac97fcc2.png)
2. Significantly improved `BatchMatMul` processing
- Before
![image](https://user-images.githubusercontent.com/33194443/210164619-6c508a58-d72f-403f-84d9-e81db2787e2b.png)
- After
![image](https://user-images.githubusercontent.com/33194443/210164578-1063d929-5cd3-4c63-ab2a-bcc2f2751e16.png)

What's Changed
* Support for `Inverse` and significantly improved `BatchMatMul` processing by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/83


**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.3.8...1.3.9

1.3.8

- Support for `If` OP
- [Created If operation 58](https://github.com/PINTO0309/onnx2tf/pull/58)
- Single `If`. https://github.com/PINTO0309/onnx2tf/releases/download/1.1.28/If_p1_11.onnx
![image](https://user-images.githubusercontent.com/33194443/210138640-01a9fd9b-2159-4699-9d70-ac78b25a532b.png)
![image](https://user-images.githubusercontent.com/33194443/210159383-bd930076-0731-4055-b5f8-78bb39f2d82f.png)
- 2-level nesting of subgraphs. https://github.com/PINTO0309/onnx2tf/releases/download/1.1.28/If_p2_11.onnx
![image](https://user-images.githubusercontent.com/33194443/210138667-7ac58756-458d-4ad5-a87d-76721e8ce20d.png)
![image](https://user-images.githubusercontent.com/33194443/210159397-56fc1f03-25e1-4cd0-b398-1a1676bcc765.png)
- 3-level nesting of subgraphs. https://github.com/PINTO0309/onnx2tf/releases/download/1.1.28/If_p3_11.onnx
![image](https://user-images.githubusercontent.com/33194443/210138683-64cad3cd-c8e5-443d-9326-1fc6af3a85cc.png)
![image](https://user-images.githubusercontent.com/33194443/210159406-3cafe7aa-59a8-4da5-bbc8-1a39a64c27da.png)
- Add protobuf installation sequence to Dockerfile

What's Changed
* fix dockerfile by fateshelled in https://github.com/PINTO0309/onnx2tf/pull/81
* Support for `If` by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/82

New Contributors
* fateshelled made their first contribution in https://github.com/PINTO0309/onnx2tf/pull/81

**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.3.7...1.3.8

1.3.7

- Support for `FusedConv`
- FusedConv activations: https://zenn.dev/pinto0309/scraps/1ac42ec0518d3b
- `Relu`
![image](https://user-images.githubusercontent.com/33194443/210130923-02d9e6cb-fb1a-40e2-9144-d2dd572f6cd9.png)
- `Tanh`
![image](https://user-images.githubusercontent.com/33194443/210130912-a5eefe19-8bb6-416b-a92b-89a3c848b3e0.png)
- `Sigmoid`
![image](https://user-images.githubusercontent.com/33194443/210130905-655061ba-4332-4c46-ad2f-d5a8cb45a92c.png)
- `LeakyRelu`
![image](https://user-images.githubusercontent.com/33194443/210130898-fb874eeb-046b-4539-84d5-54f8ccab6135.png)
- `Clip`
![image](https://user-images.githubusercontent.com/33194443/210130875-6bfe1838-d694-4218-b308-adb4d94140d6.png)
- `HardSigmoid`
![image](https://user-images.githubusercontent.com/33194443/210130884-20bc02cc-b508-463f-a69b-825828db36cc.png)
- `HardSigmoid`
- Improved processing

What's Changed
* Support for `FusedConv` by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/80


**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.3.6...1.3.7

1.3.6

- `Flatten`
- If the output geometry is clear, overwrite with ONNX output geometry
- https://github.com/Lednik7/CLIP-ONNX
- https://github.com/PINTO0309/onnx2tf/releases/download/1.1.28/vit-b-32_textual.onnx
- https://github.com/PINTO0309/onnx2tf/releases/download/1.1.28/vit-b-32_visual.onnx
- Support for ViT

What's Changed
* If the output geometry is clear, overwrite with ONNX output geometry by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/78


**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.3.5...1.3.6

1.3.5

- Revert hailo optimization

What's Changed
* Revert hailo optimization by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/77


**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.3.4...1.3.5

1.3.4

- `Slice`
- [experimental] Added model optimization option for hailo hardware accelerators.

-ho, --hailo_optimization
[experimental] Optimize the model for hailo hardware accelerator.

![image](https://user-images.githubusercontent.com/33194443/209913894-05399f97-9eba-4961-893d-8aff61a14aae.png)

- `Reshape`
- Improved processing to disable the `-1` shape if the output shape is known. This is useful for dealing with the presence of multiple undefined dimensions, which can be a problem when converting to N-batch processing.
![image](https://user-images.githubusercontent.com/33194443/209914098-307bcd6a-40e2-4f98-8399-03d23fa85600.png)

What's Changed
* Removing unneeded import statements and adding function comments by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/75
* Added model optimization option for hailo hardware accelerators by PINTO0309 in https://github.com/PINTO0309/onnx2tf/pull/76


**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.3.3...1.3.4

Page 59 of 86

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.