- Support for `--keep_nwc_or_nhwc_or_ndhwc_input_names` option
- If the input OP of ONNX before conversion is NHWC, use the -kt option.
- https://github.com/gmalivenko/onnx2keras/issues/151
- face_liveness.onnx - NHWC Input OP

-kt KEEP_NWC_OR_NHWC_OR_NDHWC_INPUT_NAMES [KEEP_NWC_OR_NHWC_OR_NDHWC_INPUT_NAMES ...], \
--keep_nwc_or_nhwc_or_ndhwc_input_names KEEP_NWC_OR_NHWC_OR_NDHWC_INPUT_NAMES \
[KEEP_NWC_OR_NHWC_OR_NDHWC_INPUT_NAMES ...]
Holds the NWC or NHWC or NDHWC of the input shape for the specified INPUT OP names.
If a nonexistent INPUT OP name is specified, it is ignored.
If the input OP name is the same as the input OP name specified
in the keep_ncw_or_nchw_or_ncdhw_input_names option, it is ignored.
Valid only for 3D, 4D and 5D input tensors.
e.g. --keep_nwc_or_nhwc_or_ndhwc_input_names "input0" "input1" "input2"
- sample
onnx2tf -i face_liveness.onnx -kt input -b 1
**Full Changelog**: https://github.com/PINTO0309/onnx2tf/compare/1.1.13...1.1.14