Releases: PINTO0309/sor4onnx
Releases · PINTO0309/sor4onnx
1.0.7
- Retention of metadata_props
What's Changed
- Retention of metadata_props by @PINTO0309 in #2
Full Changelog: 1.0.6...1.0.7
1.0.6
- Fix to preserve
domain
andir_version
. - API specification changes due to the version upgrade of onnx are now supported.
onnx==1.16.0
What's Changed
- Fix to preserve domain and ir_version by @PINTO0309 in #1
New Contributors
- @PINTO0309 made their first contribution in #1
Full Changelog: 1.0.5...1.0.6
1.0.5
- Supoort for
search_mode
option
-sm {exact_match,partial_match,prefix_match,suffix_match}
--search_mode {exact_match,partial_match,prefix_match,suffix_match}
OP name search mode.
exact_match or partial_match or prefix_match or suffix_match.
exact_match: Exact match search for OP name.
partial_match: Partial match search for OP name.
prefix_match: Prefix match search for OP name.
suffix_match: Suffix match search for OP name.
Default: exact_match
1.0.4
- Add short form soc4onnx
$ sor4onnx -h usage: sor4onnx [-h] -if INPUT_ONNX_FILE_PATH -on OLD_NEW OLD_NEW -of OUTPUT_ONNX_FILE_PATH [-m {full,inputs,outputs}] [-n] optional arguments: -h, --help show this help message and exit. -if INPUT_ONNX_FILE_PATH, --input_onnx_file_path INPUT_ONNX_FILE_PATH Input onnx file path. -on OLD_NEW OLD_NEW, --old_new OLD_NEW OLD_NEW All occurrences of substring old replaced by new. e.g. --old_new "onnx::" "" -of OUTPUT_ONNX_FILE_PATH, --output_onnx_file_path OUTPUT_ONNX_FILE_PATH Output onnx file path. -m {full,inputs,outputs}, --mode {full,inputs,outputs} Specifies the type of node to be replaced. full or inputs or outputs. full: Rename all nodes. inputs: Rename only the input node. outputs: Rename only the output node. Default: full -n, --non_verbose Do not show all information logs. Only error logs are displayed.