drethage / speech-denoising-wavenet

A neural network for end-to-end speech denoising
MIT License
673 stars 165 forks source link

About get_dataset(config, model) function #24

Open zhengge opened 6 years ago

zhengge commented 6 years ago
def get_dataset(config, model):

    if config['dataset']['type'] == 'vctk+demand':
        return datasets.VCTKAndDEMANDDataset(config, model).load_dataset()
    elif config['dataset']['type'] == 'nsdtsea':
        return datasets.NSDTSEADataset(config, model).load_dataset()

I can not find the the class of VCTKAndDEMANDDataset(). Thanks.