Function convolutionFiltersGrad

Creates an operation representing the derivative of a convolution operation with respect to the filters.

Operation convolutionFiltersGrad (
  Operation parentGrad,
  Operation features,
  ulong[] filtersShape,
  ulong[] padding,
  ulong[] stride,
  string mod = __MODULE__,
  ulong line = cast(ulong)__LINE__
);

Parameters

NameDescription
parentGrad Gradient of some functions w.r.t. the convolution operation.
features The features provided to the convolution operation.
filtersShape The shape of the filters provided to the convolution operation.

Returns

The gradient.