conex / espnet2 /diar /decoder /abs_decoder.py
tobiasc's picture
Initial commit
ad16788
raw
history blame contribute delete
No virus
411 Bytes
from abc import ABC
from abc import abstractmethod
from typing import Tuple
import torch
class AbsDecoder(torch.nn.Module, ABC):
@abstractmethod
def forward(
self,
input: torch.Tensor,
ilens: torch.Tensor,
) -> Tuple[torch.Tensor, torch.Tensor]:
raise NotImplementedError
@property
@abstractmethod
def num_spk(self):
raise NotImplementedError