Function convolutionTranspose

Creates a transposed convolution operation (also known, incorrectly, as deconvolution).

Operation convolutionTranspose (
  Operation features,
  Operation filters,
  ulong[] padding = [0LU, 0LU],
  ulong[] stride = [1LU, 1LU],
  string mod = __MODULE__,
  ulong line = cast(ulong)__LINE__
);

Parameters

NameDescription
features The feature maps.
filters The filters to be convolved with the feature maps.

Returns

The operation.