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
Most of the problems of edge devices is that onnx not simplifies concatenations. If we have 3 inputs at the same time, causes problems.
So solutions I think that can be
modify the original model at the position corresponding to 3 concatenations to
use two parallel Concat structures. For example, if the input nodes are A, B, C
and the output is Concat(A, B, C), modify it to Concat(Concat(A, B), C).
Specify the specific dimensions for the reshape operation in this process to
avoid abnormal precision caused by automatic inference.
The text was updated successfully, but these errors were encountered:
Most of the problems of edge devices is that onnx not simplifies concatenations. If we have 3 inputs at the same time, causes problems.
So solutions I think that can be
modify the original model at the position corresponding to 3 concatenations to
use two parallel Concat structures. For example, if the input nodes are A, B, C
and the output is Concat(A, B, C), modify it to Concat(Concat(A, B), C).
Specify the specific dimensions for the reshape operation in this process to
avoid abnormal precision caused by automatic inference.
The text was updated successfully, but these errors were encountered: