Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -22,4 +22,11 @@ examples = ['damaged roof 2.jpg',
|
|
22 |
interpretation='default'
|
23 |
enable_queue=True
|
24 |
|
25 |
-
gr.Interface(fn=roofpredict,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
interpretation='default'
|
23 |
enable_queue=True
|
24 |
|
25 |
+
gr.Interface(fn=roofpredict,
|
26 |
+
inputs="image",
|
27 |
+
outputs="label",
|
28 |
+
title=title,
|
29 |
+
examples=examples,
|
30 |
+
interpretation=interpretation,
|
31 |
+
enable_queue=enable_queue,
|
32 |
+
description =description ).launch()
|