Tutorial:
ESPnet1:
ESPnet2:
Notebook:
Package Reference:
Tool Reference:
from abc import ABC, abstractmethod from typing import Iterator [docs]class AbsIterFactory(ABC): [docs] @abstractmethod def build_iter(self, epoch: int, shuffle: bool = None) -> Iterator: raise NotImplementedError