dilation
dilation copied to clipboard
How can we use 3D dilated Convolution in Lasagne
I found both Keras and Lasagne have no define about 3D dilated convolution. So, How can I use this advanced tech via those tools.
According to the Conv3D documentation, Keras supports dilated convolution directly in the Conv3D
layer if you use the dilation_rate
parameter.
Thanks for your help. Dose the Lasagne also support 3D dilated convolution?