mirror of https://github.com/coqui-ai/TTS.git
Fix #2062
This commit is contained in:
parent
fcbfca869f
commit
b686c09704
|
@ -22,14 +22,12 @@ class HifiganConfig(BaseGANVocoderConfig):
|
||||||
generator_model_params (dict): Parameters of the generator model. Defaults to
|
generator_model_params (dict): Parameters of the generator model. Defaults to
|
||||||
`
|
`
|
||||||
{
|
{
|
||||||
"use_mel": True,
|
"upsample_factors": [8, 8, 2, 2],
|
||||||
"sample_rate": 22050,
|
"upsample_kernel_sizes": [16, 16, 4, 4],
|
||||||
"n_fft": 1024,
|
"upsample_initial_channel": 512,
|
||||||
"hop_length": 256,
|
"resblock_kernel_sizes": [3, 7, 11],
|
||||||
"win_length": 1024,
|
"resblock_dilation_sizes": [[1, 3, 5], [1, 3, 5], [1, 3, 5]],
|
||||||
"n_mels": 80,
|
"resblock_type": "1",
|
||||||
"mel_fmin": 0.0,
|
|
||||||
"mel_fmax": None,
|
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
batch_size (int):
|
batch_size (int):
|
||||||
|
|
Loading…
Reference in New Issue