The errors in using LowerConvsToMatMul ()
#882
Replies: 1 comment
-
@maltanar Is there a suitable solution in Finn to handle the grouped convolution of this channel transformation? I hope you can give me some guidance and advice. Thanks. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using Finn's
LowerConvsToMatMul()
in networks with normal and depthwise separable grouped convolutions Incorrectly:Cannot reshape array of size 648 into shape (72,81).
I looked at the shape of the weights I was using and I found the error:
The error is because the first layer has been grouped convolved, but the "LowerConvsToMatMul()" "is still ungrouped.
In other words, it does not seem to recognize the grouping Settings, but I looked at the onnx corresponding node information, which contains the grouping information.
So how do I solve this problem?
I hope you can give me some advice and guidance.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions