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};
20
21class LayerNormModule {
22public:
23 explicit LayerNormModule(NormConfig config);
24
25 const core::ModuleSchema & schema() const noexcept;
26 const NormConfig & config() const noexcept;
27
28 core::TensorValue build(
29 core::ModuleBuildContext & ctx,
30 const core::TensorValue & input,
31 const NormWeights & weights) const;
32
33 static const core::ModuleSchema & static_schema() noexcept;
34
35private:
36 NormConfig config_;
37};
38
39class RMSNormModule {
40public:

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