File size: 312 Bytes
2fd7007
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
@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