Spaces:
Restarting
on
CPU Upgrade
Restarting
on
CPU Upgrade
File size: 301 Bytes
4ea5474 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import server as xvaserver
import gradio as gr
def predict(input):
return ''
input_textbox = gr.Textbox(
label="Input Text",
lines=1,
autofocus=True
)
gradio_app = gr.Interface(
predict,
input_textbox,
title="xVASynth",
)
if __name__ == "__main__":
gradio_app.launch() |