Class: Conv2DDepthwiseFilter

Conv2DDepthwiseFilter

A depthwise convolution filter which applies weights to the inputs channels.

Inputs: - x: [batch, height, width, channels] - w: [filterHeight, filterWidth, inChannels, channelMultiplier] Stride: number (1 or 2 for our use case) Padding: 'same' or 'valid' PadMethod: 'zero' or 'edge' - zero: Fill with 0, edge: Repeat outer boundary of input