abdabbas commited on
Commit
579c1cf
1 Parent(s): 0a73c77
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ image = gr.inputs.Image(shape=(299,299))
3
+ label = gr.outputs.Label(num_top_classes=1)
4
+
5
+ gr.Interface(fn=predict_image, inputs=image, outputs=label,interpretation='default').launch(debug='True',share=True)