diff options
author | Pherkel | 2023-09-11 15:45:35 +0200 |
---|---|---|
committer | Pherkel | 2023-09-11 15:45:35 +0200 |
commit | c078ce6789c134aa05607903d3bf9e4be64df45d (patch) | |
tree | afff5a3dd3e19a1cf906c096c3938f8b70fa683d /swr2_asr/utils/data.py | |
parent | effde1d9e71864a2c5bd8464db0958f5bf2d1733 (diff) |
big change!
Diffstat (limited to 'swr2_asr/utils/data.py')
-rw-r--r-- | swr2_asr/utils/data.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/swr2_asr/utils/data.py b/swr2_asr/utils/data.py index 74d10c9..e939e1d 100644 --- a/swr2_asr/utils/data.py +++ b/swr2_asr/utils/data.py @@ -76,20 +76,6 @@ def split_to_mls_split(split_name: Split) -> MLSSplit: return split_name # type: ignore -class Sample(TypedDict): - """Type for a sample in the dataset""" - - waveform: torch.Tensor - spectrogram: torch.Tensor - input_length: int - utterance: torch.Tensor - utterance_length: int - sample_rate: int - speaker_id: str - book_id: str - chapter_id: str - - class MLSDataset(Dataset): """Custom Dataset for reading Multilingual LibriSpeech |