ltx23_audio_causal_conv2d

Causal 2D convolution for audio spectrograms

Description

Pads asymmetrically along the causal axis (“height” = time frames for LTX audio) before an unpadded Conv2d.

Usage

ltx23_audio_causal_conv2d(in_channels, out_channels, kernel_size = 3L,
                          stride = 1L, causality_axis = "height")

Arguments

  • kernel_size: Integer or length-2 vector.
  • stride: Integer.
  • causality_axis: “height”, “width”, “width-compatibility”, or “none”.
  • in_channels,out_channels: Integers.