File size: 203 Bytes
18cf2cb
 
 
 
64e42c0
 
18cf2cb
64e42c0
1
2
3
4
5
6
7
8
9
import gradio as gr
from tools import *


def gradio_output(file):
    return (predict_glucose_tool(file))

gr.Interface(fn=gradio_output,inputs=gr.File(label="Upload CSV File"),outputs="plot").launch()