Tutorial:
ESPnet1:
ESPnet2:
Notebook:
Package Reference:
Tool Reference:
from abc import ABC, abstractmethod from typing import Any, Dict, Tuple import torch [docs]class AbsFeatsExtract(torch.nn.Module, ABC): [docs] @abstractmethod def output_size(self) -> int: raise NotImplementedError [docs] @abstractmethod def get_parameters(self) -> Dict[str, Any]: raise NotImplementedError [docs] @abstractmethod def forward( self, input: torch.Tensor, input_lengths: torch.Tensor ) -> Tuple[torch.Tensor, torch.Tensor]: raise NotImplementedError