mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-02-03 08:43:57 +03:00
12 lines
264 B
Python
12 lines
264 B
Python
|
|
||
|
|
||
|
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")
|