ltx23_causal_conv3d

Causal 3D convolution

Description

Spatial padding is handled by the convolution; temporal padding replicates the first frame (causal) or both edge frames (non-causal), chosen at call time.

Usage

ltx23_causal_conv3d(in_channels, out_channels, kernel_size = 3L, stride = 1L,
                    spatial_padding_mode = "zeros")

Arguments

  • kernel_size: Integer or length-3 vector (t, h, w).
  • stride: Integer or length-3 vector.
  • spatial_padding_mode: Character. Conv padding mode.
  • in_channels,out_channels: Integers.