Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -28,5 +28,7 @@ app = gr.Interface(fn=predict_model, inputs=inimage, outputs=outimage,examples=[
|
|
| 28 |
"./assets/examples/bw.jpg",
|
| 29 |
"./assets/examples/hillbefore.jpg"])
|
| 30 |
|
| 31 |
-
|
|
|
|
|
|
|
| 32 |
|
|
|
|
| 28 |
"./assets/examples/bw.jpg",
|
| 29 |
"./assets/examples/hillbefore.jpg"])
|
| 30 |
|
| 31 |
+
if __name__ == "__main__":
|
| 32 |
+
app.launch()
|
| 33 |
+
|
| 34 |
|