Livia_Zaharia commited on
Commit
18cf2cb
·
1 Parent(s): 7575e62

renamed app

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from tools import *
3
+
4
+
5
+ def gradio_output():
6
+ return (predict_glucose_tool())
7
+
8
+ gr.Interface(fn=gradio_output).launch()