mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-04 19:58:58 +08:00
Add files via upload
This commit is contained in:
parent
2db80da1c5
commit
e8fcd7d695
@ -1,5 +1,6 @@
|
|||||||
import torch
|
import torch
|
||||||
|
import onnxsim
|
||||||
|
import onnx
|
||||||
from infer.lib.infer_pack.models_onnx import SynthesizerTrnMsNSFsidM
|
from infer.lib.infer_pack.models_onnx import SynthesizerTrnMsNSFsidM
|
||||||
|
|
||||||
def export_onnx(ModelPath, ExportedPath):
|
def export_onnx(ModelPath, ExportedPath):
|
||||||
@ -48,4 +49,6 @@ def export_onnx(ModelPath, ExportedPath):
|
|||||||
input_names=input_names,
|
input_names=input_names,
|
||||||
output_names=output_names,
|
output_names=output_names,
|
||||||
)
|
)
|
||||||
|
model, _ = onnxsim.simplify(ExportedPath)
|
||||||
|
onnx.save(model, ExportedPath)
|
||||||
return "Finished"
|
return "Finished"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user