Joe
Joe
Currently, [Split](https://github.com/onnx/onnx/blob/v1.12.0/docs/Operators.md#split) operator splits the tensor to **equal sized** tensors if `split` input is not given. I think this restriction is not very important. ~For example, pytorch's split also supports...
# Problem `ppe.onnx.export_testcase` fails with list input. This is because the number of `input_names` is incorrect. The number of input tensors in the exported onnx is total tensor numbers, not...
To support list inputs and models with list operators in `ppe.onnx.export_testcase`, we have two topics. # How to handle list inputs Roughly, we have two choices * Unroll lists and...
With current behavior, the saved `input_0.pb`, ..., `input_{n-1}.pb` input tensors can have different number than the number of model inputs. This may confuse users. I think removing unnecessary inputs is...