File size: 208 Bytes
5558e45
beba0cd
5558e45
b784d49
 
9de4177
b784d49
5558e45
1
2
3
4
5
6
7
8
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()