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
{{ message }}
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
Thanks for pointing this out! I feel that count_dynamic_dim(input_shape) > 1 is for Conv2D case, because the first dim of input_shape is always None (it is a batch dim). Looks Conv1D should use 0 here, not 1.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi Team,
I was trying to convert a model with conv1d and padding type "same" when I countered below error:
Changing to
in below line fixes the issue:
keras-onnx/keras2onnx/ke2onnx/conv.py
Line 146 in 383e431
Here is a small code snippet, that demonstrates the problem:
Is it deliberate to keep count_dynamic_dim(input_shape) > 1 or this is a bug?
The text was updated successfully, but these errors were encountered: