MCPcopy Create free account
hub / github.com/evilsocket/cake / FeedforwardModule

Class FeedforwardModule

cake-core/src/models/luxtts/feedforward.rs:16–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14
15#[derive(Debug, Clone)]
16pub struct FeedforwardModule {
17 in_proj_weight: Tensor,
18 in_proj_bias: Option<Tensor>,
19 out_proj_weight: Tensor,
20 out_proj_bias: Option<Tensor>,
21 backend: Arc<dyn ComputeBackend>,
22}
23
24impl FeedforwardModule {
25 /// Load a feed-forward module.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected