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

DepthwiseConv2D outputs normally when dilation_rate is 0 #6806

Open
cheyennee opened this issue Dec 8, 2023 · 0 comments
Open

DepthwiseConv2D outputs normally when dilation_rate is 0 #6806

cheyennee opened this issue Dec 8, 2023 · 0 comments

Comments

@cheyennee
Copy link

repo code:

from keras.engine import Model, Input
layer = keras.layers.DepthwiseConv2D(kernel_size=3, padding="valid", strides=3, dilation_rate=0, data_format="channels_first")
x = Input(batch_shape=(1, 32, 32, 16))
y = layer(x)
model = Model(x, y)
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