Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -30,5 +30,12 @@ label = gr.outputs.Label(num_top_classes=48)
|
|
30 |
title= 'A Game For That - Gamification Using Snapshot Images'
|
31 |
examples = ['1.1.jpg','1.2.jpg','2.jpg','3.jpg','4.jpg', '5.jpg' ]
|
32 |
|
33 |
-
iface = gr.Interface(
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
title= 'A Game For That - Gamification Using Snapshot Images'
|
31 |
examples = ['1.1.jpg','1.2.jpg','2.jpg','3.jpg','4.jpg', '5.jpg' ]
|
32 |
|
33 |
+
iface = gr.Interface(
|
34 |
+
fn=recognize_game_all,
|
35 |
+
inputs=image,
|
36 |
+
outputs=label,
|
37 |
+
title=title,
|
38 |
+
examples=examples)
|
39 |
+
|
40 |
+
#iface.launch(inline=False)
|
41 |
+
iface.launch(debug=True)
|