Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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()
|