Closed FlareP1 closed 12 months ago
Update: I fixed this issue which is actually due to the finetuning only supporting a single GPU. If I run after SET CUDA_VISIBLE_DEVICES=0 to force only 1 GPU, then the finetuning does run.
Isn’t it caused by batch size though? The default setting should work for multiple GPUs. I tested the script with 4 A100.
Hi thanks for this amazing TTS system, the inference is the best quality open source system that I have heard and works well and very fast under windows. However the fine tune script does not appear to work unmodified in the windows environment. I am trying to get the train_finetine.py to run locally under windows. I have made a couple of fixes (below) have have resolved some errors. 1) Python needs to be called with -Xutf8 to fource UTF8 locale 2) In _load_tenser(self, data) ~line 142 needs the following update osp.join(self.root_path, wave_path).replace("\","/") to ensure the correct slash is used within the file path when loading wav files.
However now I am stuck with the error below. Does anyone know what this might indicate? I can run the code in a debugger but I am not that familar with python to understand what is causing this error or what the correct behaviour should be.
Thanks in advance