Add files via upload

This commit is contained in:
Ναρουσέ·μ·γιουμεμί·Χινακάννα 2024-11-24 23:06:18 +08:00 committed by GitHub
parent 2db80da1c5
commit e8fcd7d695
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,6 @@
import torch
import onnxsim
import onnx
from infer.lib.infer_pack.models_onnx import SynthesizerTrnMsNSFsidM
def export_onnx(ModelPath, ExportedPath):
@ -48,4 +49,6 @@ def export_onnx(ModelPath, ExportedPath):
input_names=input_names,
output_names=output_names,
)
model, _ = onnxsim.simplify(ExportedPath)
onnx.save(model, ExportedPath)
return "Finished"