File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2424 MelGANGeneratorConfig ,
2525 MultiBandMelGANGeneratorConfig ,
2626 Tacotron2Config ,
27+ ParallelWaveGANGeneratorConfig ,
2728)
2829
2930CONFIG_MAPPING = OrderedDict (
3233 ("fastspeech2" , FastSpeech2Config ),
3334 ("multiband_melgan_generator" , MultiBandMelGANGeneratorConfig ),
3435 ("melgan_generator" , MelGANGeneratorConfig ),
35- ("tacotron2" , Tacotron2Config )
36+ ("tacotron2" , Tacotron2Config ),
37+ ("parallel_wavegan_generator" , ParallelWaveGANGeneratorConfig )
3638 ]
3739)
3840
Original file line number Diff line number Diff line change 2424 MelGANGeneratorConfig ,
2525 MultiBandMelGANGeneratorConfig ,
2626 Tacotron2Config ,
27+ ParallelWaveGANGeneratorConfig ,
2728)
2829
2930from tensorflow_tts .models import (
3233 TFMelGANGenerator ,
3334 TFMBMelGANGenerator ,
3435 TFTacotron2 ,
36+ TFParallelWaveGANGenerator ,
3537)
3638
3739
4244 (MultiBandMelGANGeneratorConfig , TFMBMelGANGenerator ),
4345 (MelGANGeneratorConfig , TFMelGANGenerator ),
4446 (Tacotron2Config , TFTacotron2 ),
47+ (ParallelWaveGANGeneratorConfig , TFParallelWaveGANGenerator )
4548 ]
4649)
4750
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ def test_auto_processor(mapper_path):
5858 "./examples/multiband_melgan/conf/multiband_melgan.v1.yaml" ,
5959 "./examples/tacotron2/conf/tacotron2.v1.yaml" ,
6060 "./examples/tacotron2/conf/tacotron2.kss.v1.yaml" ,
61+ "./examples/parallel_wavegan/conf/parallel_wavegan.v1.yaml" ,
6162 ]
6263)
6364def test_auto_model (config_path ):
You can’t perform that action at this time.
0 commit comments