mirror of
https://github.com/babysor/MockingBird.git
synced 2024-03-22 13:11:31 +08:00
Fix compatibility issue
This commit is contained in:
parent
6a793cea84
commit
ee643d7cbc
|
@ -11,7 +11,7 @@ import numpy as np
|
||||||
from mkgui.base.components.types import FileContent
|
from mkgui.base.components.types import FileContent
|
||||||
from vocoder.hifigan import inference as gan_vocoder
|
from vocoder.hifigan import inference as gan_vocoder
|
||||||
from synthesizer.inference import Synthesizer
|
from synthesizer.inference import Synthesizer
|
||||||
from typing import Any
|
from typing import Any, Tuple
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
|
|
||||||
# Constants
|
# Constants
|
||||||
|
@ -73,7 +73,7 @@ class AudioEntity(BaseModel):
|
||||||
mel: Any
|
mel: Any
|
||||||
|
|
||||||
class Output(BaseModel):
|
class Output(BaseModel):
|
||||||
__root__: tuple[AudioEntity, AudioEntity]
|
__root__: Tuple[AudioEntity, AudioEntity]
|
||||||
|
|
||||||
def render_output_ui(self, streamlit_app, input) -> None: # type: ignore
|
def render_output_ui(self, streamlit_app, input) -> None: # type: ignore
|
||||||
"""Custom output UI.
|
"""Custom output UI.
|
||||||
|
|
|
@ -71,7 +71,7 @@ class Input(BaseModel):
|
||||||
description="选择语音转换模型文件."
|
description="选择语音转换模型文件."
|
||||||
)
|
)
|
||||||
vocoder: vocoders = Field(
|
vocoder: vocoders = Field(
|
||||||
..., alias="语音编码模型",
|
..., alias="语音解码模型",
|
||||||
description="选择语音解码模型文件(目前只支持HifiGan类型)."
|
description="选择语音解码模型文件(目前只支持HifiGan类型)."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user