conv2dTranspose function
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],
})
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);