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

Class LayerNormModule

include/engine/framework/modules/norm_modules.h:21–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19 std::optional<core::TensorValue> bias;
20};
21
22struct ChannelAffineWeights {
23 core::TensorValue scale;
24 core::TensorValue bias;
25};
26
27class LayerNormModule {
28public:
29 explicit LayerNormModule(NormConfig config);
30
31 const core::ModuleSchema & schema() const noexcept;
32 const NormConfig & config() const noexcept;
33
34 core::TensorValue build(
35 core::ModuleBuildContext & ctx,
36 const core::TensorValue & input,
37 const NormWeights & weights) const;
38
39 static const core::ModuleSchema & static_schema() noexcept;
40

Callers 15

buildMethod · 0.85
buildMethod · 0.85
apply_adalnFunction · 0.85
build_wavlm_graph_layersFunction · 0.85
build_hubert_graphFunction · 0.85
EncoderGraphMethod · 0.85
rebuildMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected