fierce74 commited on
Commit
e7138ce
·
1 Parent(s): 7f730c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,5 +13,5 @@ def classify_img(img):
13
  image = gr.inputs.Image(shape=(192,192))
14
  label = gr.outputs.Label()
15
  examples = ['elliptical.jpg', 'irregular.jpg', 'spiral.jpg']
16
- iface = gr.Interface(fn = classify_img, inputs = image, outputs = label, examples = examples)
17
  iface.launch()
 
13
  image = gr.inputs.Image(shape=(192,192))
14
  label = gr.outputs.Label()
15
  examples = ['elliptical.jpg', 'irregular.jpg', 'spiral.jpg']
16
+ iface = gr.Interface(fn = classify_img, inputs = image, outputs = label, title = 'Galaxy Classifier', examples = examples)
17
  iface.launch()