conv2dTranspose function

VARP conv2dTranspose(
  1. VARP x,
  2. VARP weight, {
  3. VARP? bias,
  4. PaddingMode pad = PaddingMode.VALID,
  5. List<int> stride = const [1, 1],
  6. List<int> dilatie = const [1, 1],
  7. int group = 1,
  8. List<int> pads = const [0, 0],
})

Implementation

VARP conv2dTranspose(
  VARP x,
  VARP weight, {
  VARP? bias,
  PaddingMode pad = PaddingMode.VALID,
  List<int> stride = const [1, 1],
  List<int> dilatie = const [1, 1],
  int group = 1,
  List<int> pads = const [0, 0],
}) => deconv(x, weight, bias: bias, pad: pad, stride: stride, dilatie: dilatie, group: group, pads: pads);