mirror of https://github.com/coqui-ai/TTS.git
Small changex
This commit is contained in:
parent
adedd7b1a9
commit
560330e22e
|
@ -4,7 +4,7 @@ x updated audio pre-processing (removed preemphasis and updated normalization)
|
||||||
- testing with example senteces
|
- testing with example senteces
|
||||||
- optional eval-iteration
|
- optional eval-iteration
|
||||||
- plot alignments and specs for test sentences
|
- plot alignments and specs for test sentences
|
||||||
- use lws as an alternative vocoder
|
- use lws as an alternative audio processor
|
||||||
- make configurable audio module
|
- make configurable audio module
|
||||||
- make precomputed of on-the-fly dataloader configurable
|
- make precomputed of on-the-fly dataloader configurable
|
||||||
- use of preemphasis is configurable. It is skipped if config.preamphasis == 0
|
- use of preemphasis is configurable. It is skipped if config.preamphasis == 0
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"model_name": "loc-sens-attn-lws",
|
"model_name": "loc-sens-attn-lws-no_preemphasis",
|
||||||
"audio_processor": "audio-lws",
|
"audio_processor": "audio_lws",
|
||||||
"num_mels": 80,
|
"num_mels": 80,
|
||||||
"num_freq": 1025,
|
"num_freq": 1025,
|
||||||
"sample_rate": 20000,
|
"sample_rate": 20000,
|
||||||
"frame_length_ms": 50,
|
"frame_length_ms": 50,
|
||||||
"frame_shift_ms": 12.5,
|
"frame_shift_ms": 12.5,
|
||||||
"preemphasis": 0,
|
"preemphasis": 0.97,
|
||||||
"min_mel_freq": 125,
|
"min_mel_freq": 125,
|
||||||
"max_mel_freq": 7600,
|
"max_mel_freq": 7600,
|
||||||
"min_level_db": -100,
|
"min_level_db": -100,
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
"data_path": "/snakepit/shared/data/keithito/LJSpeech-1.1/",
|
"data_path": "/snakepit/shared/data/keithito/LJSpeech-1.1/",
|
||||||
"meta_file_train": "metadata.csv",
|
"meta_file_train": "metadata.csv",
|
||||||
"meta_file_val": null,
|
"meta_file_val": null,
|
||||||
"dataset": "LJSpeechCached",
|
"dataset": "LJSpeech",
|
||||||
"min_seq_len": 0,
|
"min_seq_len": 0,
|
||||||
"output_path": "experiments/"
|
"output_path": "experiments/"
|
||||||
}
|
}
|
Loading…
Reference in New Issue