Function convolutionFeaturesGrad

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

Operation convolutionFeaturesGrad (
  Operation parentGrad,
  Operation filters,
  ulong[] featuresShape,
  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.
filters The filters of the convolution operation.
featuresShape The shape of the features fed into the convolution operations.

Returns

The gradient.