speechbrain_tacotron2_exp / application.py
David Portes
gradio
0203a23
raw
history blame contribute delete
197 Bytes
import os
os.system("pip install gradio==3.3")
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()