Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3 concatenations at the same time? [Request] #318

Open
johnnynunez opened this issue Nov 29, 2023 · 0 comments
Open

3 concatenations at the same time? [Request] #318

johnnynunez opened this issue Nov 29, 2023 · 0 comments

Comments

@johnnynunez
Copy link

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.

model: yolov8

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant