sh-lee-prml / HierSpeechpp

The official implementation of HierSpeech++
MIT License
1.19k stars 135 forks source link

Problem in english cleaners #32

Closed youralmight closed 10 months ago

youralmight commented 10 months ago

image As the comment says, the differences between the two cleaners are that cleaners2 has punctuation and stress. However, the default value of preserve.punctuation and with_stress in phonemizer.phonemize is false, which means cleaners 2, and it's contradict to the comment. image

hayeong0 commented 10 months ago

Hi, we declare and use the backend object on the 19th line. Therefore, it is operating with 'with_stress=True'.

Here: https://github.com/sh-lee-prml/HierSpeechpp/blob/68f3681a15320ce240ac9aa6db78822ae691c89e/ttv_v1/text/cleaners.py#L19

youralmight commented 10 months ago

Oops, I see.