You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found another bug in the Python ONNX parser which documenting in case of failure to merge the C++ parser. The code doesn't query the num_outputs attribute, and treats incorrectly gets split as an attribute when it should be an input node. See https://github.com/onnx/onnx/blob/main/docs/Operators.md#Split for details.
It also unnecessarily recreates a whole set of new output variables.
Again, not planning to fix myself as the C++ implementation will be correct.
The text was updated successfully, but these errors were encountered:
Found another bug in the Python ONNX parser which documenting in case of failure to merge the C++ parser. The code doesn't query the
num_outputs
attribute, and treats incorrectly getssplit
as an attribute when it should be an input node. See https://github.com/onnx/onnx/blob/main/docs/Operators.md#Split for details.It also unnecessarily recreates a whole set of new output variables.
Again, not planning to fix myself as the C++ implementation will be correct.
The text was updated successfully, but these errors were encountered: