Demo_Basque_ASR / app.py
asierhv's picture
Create app.py
ac852e1 verified
raw
history blame
245 Bytes
import gradio as gr
import torch
import nemo.collections.asr as nemo_asr
from omegaconf import OmegaConf, open_dict
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()