espnet2.spk.pooling.chn_attn_stat_pooling.ChnAttnStatPooling
espnet2.spk.pooling.chn_attn_stat_pooling.ChnAttnStatPooling
class espnet2.spk.pooling.chn_attn_stat_pooling.ChnAttnStatPooling(input_size: int = 1536)
Bases: AbsPooling
Aggregates frame-level features to single utterance-level feature.
Proposed in B.Desplanques et al., “ECAPA-TDNN: Emphasized Channel Attention, Propagation and Aggregation in TDNN Based Speaker Verification”
- Parameters:input_size – dimensionality of the input frame-level embeddings. Determined by encoder hyperparameter. For this pooling layer, the output dimensionality will be double of the input_size
Initializes internal Module state, shared by both nn.Module and ScriptModule.
forward(x, task_tokens: Tensor | None = None)
Defines the computation performed at every call.
Should be overridden by all subclasses.
NOTE
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.
output_size()