MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / ConvTranspose1dModule

Class ConvTranspose1dModule

include/engine/framework/modules/conv_modules.h:99–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97 const DepthwiseConv2dConfig & config() const noexcept;
98 const core::ModuleSchema & schema() const noexcept;
99
100 core::TensorValue build(
101 core::ModuleBuildContext & ctx,
102 const core::TensorValue & input,
103 const Conv2dWeights & weights) const;
104
105 static const core::ModuleSchema & static_schema() noexcept;
106
107private:
108 DepthwiseConv2dConfig config_;
109};
110
111struct ConvTranspose1dConfig {
112 int64_t in_channels = 0;
113 int64_t out_channels = 0;
114 int64_t kernel_size = 0;
115 int stride = 1;
116 int padding = 0;
117 int dilation = 1;
118 bool use_bias = true;

Callers 15

buildMethod · 0.85
activation1dFunction · 0.85
buildMethod · 0.85
causal_conv_transpose1dFunction · 0.85
build_hdec_layerFunction · 0.85
buildMethod · 0.85
sconv_transpose1dFunction · 0.85
causal_conv_transpose1dFunction · 0.85
decoder_blockFunction · 0.85

Calls

no outgoing calls

Tested by 1

run_conv_transpose_caseFunction · 0.68