MAli7319's picture
Update app.py
beba0cd
raw
history blame
223 Bytes
import gradio as gr
with gr.Blocks() as user:
gr.Markdown("# AIN311 Project P05 - MOOC Recommendation")
return "Hello " + name + "!!"
iface = gr.Interface(fn=user, inputs="text", outputs="text")
iface.launch()