voice-changer/server/voice_changer/DiffusionSVC/inferencer/onnx/VocoderOnnx.py

12 lines
264 B
Python
Raw Normal View History

2023-07-19 04:20:30 +03:00
class VocoderOnnx:
def __init__(self) -> None:
pass
def initialize(self, onnx_path: str, gpu: int):
raise Exception("Not implemented")
def infer(self, out_mel, pitch, silence_front, mask):
raise Exception("Not implemented")