Source code for torchwrench.extras.speechbrain._speechbrain_fallback
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from typing import Any
from pythonwrench.importlib import Placeholder
[docs]
class DynamicItemDataset(Placeholder):
def __len__(self) -> int:
raise NotImplementedError
def __getitem__(self, *args, **kwargs) -> Any:
raise NotImplementedError