Theano / Theano

Theano was a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. It is being continued as PyTensor: www.github.com/pymc-devs/pytensor

Home Page:https://www.github.com/pymc-devs/pytensor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DepthwiseConv2D outputs normally when dilation_rate is 0

cheyennee opened this issue · comments

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)