sokonana commited on
Commit
730ad99
1 Parent(s): 22a5acd

Set MobileNet as the Default options

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -79,6 +79,6 @@ def predict2(image_np):
79
  # predicted_img.save('predicted.jpg')
80
 
81
  gr.Interface(fn=predict,
82
- inputs=[gr.Image(type="pil"), gr.Radio(['MobileNet', 'ResNet'],label='Model Selection')],
83
  outputs=gr.Image(type="pil")
84
  ).launch(share=True)
 
79
  # predicted_img.save('predicted.jpg')
80
 
81
  gr.Interface(fn=predict,
82
+ inputs=[gr.Image(type="pil"), gr.Radio(['MobileNet', 'ResNet'],label='Model Selection', value='MobileNet')],
83
  outputs=gr.Image(type="pil")
84
  ).launch(share=True)