conex / espnet2 /diar /abs_diar.py
tobiasc's picture
Initial commit
ad16788
raw
history blame
658 Bytes
from abc import ABC
from abc import abstractmethod
from collections import OrderedDict
from typing import Tuple
import torch
class AbsDiarization(torch.nn.Module, ABC):
# @abstractmethod
# def output_size(self) -> int:
# raise NotImplementedError
@abstractmethod
def forward(
self,
input: torch.Tensor,
ilens: torch.Tensor,
) -> Tuple[torch.Tensor, torch.Tensor, OrderedDict]:
raise NotImplementedError
@abstractmethod
def forward_rawwav(
self, input: torch.Tensor, ilens: torch.Tensor
) -> Tuple[torch.Tensor, torch.Tensor, OrderedDict]:
raise NotImplementedError