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 was archived by the owner on Jul 1, 2023. It is now read-only.
**Issue**: `DepthwiseConv2D(filterShape:strides:padding:activation:filterInitializer:...)`
produces a shape mismatch error in the conv-bias sum of `callAsFunction()` when initialized under a
`filterShape` with channel-multiplier greater than `1`.
More specifically, this is caused by initializing the `bias` vector with dimension equal to said channel-multiplier.
**Fix** :This PR adds the proper `bias` vector initialization by computing the dimensionality as:
`bias vector dimension = output channel count = (input channel count * channel multiplier)`
0 commit comments