Spaces:
Sleeping
Sleeping
File size: 382 Bytes
1df74c6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
from modules.webui.finetune.speaker_ft_tab import create_speaker_ft_tab
def create_ft_tabs(demo):
with gr.Tabs():
with gr.TabItem("Speaker"):
create_speaker_ft_tab(demo)
with gr.TabItem("GPT"):
gr.Markdown("🚧 Under construction")
with gr.TabItem("AE"):
gr.Markdown("🚧 Under construction")
|