Spaces:
Runtime error
Runtime error
Removing problematic parameters
Browse files
app.py
CHANGED
@@ -15,8 +15,6 @@ def predict(img):
|
|
15 |
title = "Gradio test"
|
16 |
description = "Quick Fastai classifier for bird/forest."
|
17 |
examples = ['examples/bird.jpg', 'examples/tree.jpg', 'examples/rainforest.jpg']
|
18 |
-
interpretation='default'
|
19 |
-
enable_queue=True
|
20 |
|
21 |
gr.Interface(
|
22 |
fn=predict,
|
@@ -25,7 +23,5 @@ gr.Interface(
|
|
25 |
title=title,
|
26 |
description=description,
|
27 |
examples=examples,
|
28 |
-
interpretation=interpretation,
|
29 |
-
enable_queue=enable_queue,
|
30 |
).launch()
|
31 |
iface.launch()
|
|
|
15 |
title = "Gradio test"
|
16 |
description = "Quick Fastai classifier for bird/forest."
|
17 |
examples = ['examples/bird.jpg', 'examples/tree.jpg', 'examples/rainforest.jpg']
|
|
|
|
|
18 |
|
19 |
gr.Interface(
|
20 |
fn=predict,
|
|
|
23 |
title=title,
|
24 |
description=description,
|
25 |
examples=examples,
|
|
|
|
|
26 |
).launch()
|
27 |
iface.launch()
|