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