Commit
·
682828e
1
Parent(s):
058bf51
Update app.py
Browse files
app.py
CHANGED
@@ -31,6 +31,8 @@ image = Image()
|
|
31 |
# Initialize the label output component without the 'type' argument
|
32 |
label = Label()
|
33 |
|
|
|
|
|
34 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
35 |
|
36 |
intf.launch(share=True)
|
|
|
31 |
# Initialize the label output component without the 'type' argument
|
32 |
label = Label()
|
33 |
|
34 |
+
example = ['dog.jpeg']
|
35 |
+
|
36 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
37 |
|
38 |
intf.launch(share=True)
|