jeremy110

Results 20 comments of jeremy110

Your count should be set 50000 or 500000.The problem can be solved.

I have the same problem.I using following code to modify librispeech-lexicon.txt and it works. ```python with open("librispeech-lexicon.txt",'r',encoding='utf-8') as f: f_new = open("new_lexicon.txt",'w',encoding="utf-8") lines = f.readlines() for line in lines: line_...

That is possible, maybe you can refer this https://github.com/fishaudio/Bert-VITS2/blob/master/export_onnx.py https://github.com/fishaudio/Bert-VITS2/blob/master/onnx_infer.py

hello @jadechip @acul3 It seems there might be an issue with the training process. According to the current code, if your symbol size is not equal to the original 219,...

hello~ @jadechip Yes, it looks fine as it is. However, in symbols.py, you'll need to make some modifications. If you place your new symbol inside the sorted list and then...

hello~ @jadechip My config is basically the same as yours, except my batch size is 6. Perhaps you can increase your learning rate to 9e-4 and see how it performs....

hello @jadechip @acul3 I'd like to confirm something. Are all your tones set to 0? Because I made a similar mistake before where I treated tones like ˧ ˦ as...

hello~ @acul3 @jadechip Sorry, I spent some time looking at [that](https://github.com/myshell-ai/MeloTTS/pull/117), but since I can't read Thai, I did some online research. I wanted to ask about the symbols from...

```python text: 禮 數 ipa: l e ˥ ˧ s ɔ ˨˩ phones: ['_', 'l', 'e', 's', 'ɔ', '_'] tones: [0, 2, 2, 3, 3, 0] word2ph: [1, 2, 2,...

> > About lines 5908 to 5910 in the Wiktionary file, that is a good question. I am not sure which one is correct to be honest 🤔 Maybe I...