glucosedao / app.py
Livia_Zaharia
it works locally and with user input of preprocessed csv
64e42c0
raw
history blame
203 Bytes
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()