File size: 475 Bytes
affcd23
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from hw_asr.datasets.custom_audio_dataset import CustomAudioDataset
from hw_asr.datasets.custom_dir_audio_dataset import CustomDirAudioDataset
from hw_asr.datasets.librispeech_dataset import LibrispeechDataset
from hw_asr.datasets.ljspeech_dataset import LJspeechDataset
from hw_asr.datasets.common_voice import CommonVoiceDataset

__all__ = [
    "LibrispeechDataset",
    "CustomDirAudioDataset",
    "CustomAudioDataset",
    "LJspeechDataset",
    "CommonVoiceDataset"
]