ICS5110 / KNN_UI.py
mohli's picture
Upload 4 files
a34aae9 verified
raw
history blame
190 Bytes
import gradio as gr
class KNN_UI():
def get_interface(self) -> gr.Blocks:
with gr.Blocks() as interface:
gr.Markdown("hello world!")
return interface