ursulacst commited on
Commit
120d563
·
1 Parent(s): 199e49e

let's deploy to huggingface spaces

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -11,6 +11,7 @@ def classify_image(img):
11
 
12
  image = gr.inputs.Image()
13
  label = gr.outputs.Label()
 
14
 
15
  intf = gr.Interface(fn=classify_image, inputs =image, outputs=label)
16
  intf.launch(inline=False)
 
11
 
12
  image = gr.inputs.Image()
13
  label = gr.outputs.Label()
14
+ examples = ['Cancer.png', 'Normal.png', 'NormalDif.png']
15
 
16
  intf = gr.Interface(fn=classify_image, inputs =image, outputs=label)
17
  intf.launch(inline=False)