as-ideas / TransformerTTS

🤖💬 Transformer TTS: Implementation of a non-autoregressive Transformer based neural network for text to speech.
https://as-ideas.github.io/TransformerTTS/
Other
1.13k stars 227 forks source link

About loss used #60

Closed bkumardevan07 closed 4 years ago

bkumardevan07 commented 4 years ago

is your tts loss average of (absolute error, cross entropy, mean squared error...) ??? Can you tell me what is actual tts loss used in literature. Actual I was looking but unable to find. Thanks

cfrancesco commented 4 years ago

Which model? L1 for forward, L1 (mels) and crossentropy (stop) for autoregressive. https://github.com/as-ideas/TransformerTTS/blob/master/model/models.py inside of _compile methods.