taein-tts / server /convert-onnx.bat
icecream0910's picture
Upload 4 files
2fd7007 verified
@echo off
setlocal
chcp 65001
cd /D "%~dp0"
convert_hifigan_onnx.exe ^
--torch_model_path "D:\myown-tts\server\models\hifigan-v2\best_model.pth.tar" ^
--config_path "D:\myown-tts\server\models\hifigan-v2\config.json" ^
--output_path "D:\myown-tts\server\models\hifigan-v2\hifigan.onnx"
endlocal
pause