Spaces:
Sleeping
Sleeping
fix app.py to remove share = True
Browse files
app.py
CHANGED
@@ -74,5 +74,4 @@ demo = gr.Interface(fn = predict, #maps inputs to outputs
|
|
74 |
)
|
75 |
|
76 |
#Launch the demo:
|
77 |
-
demo.launch(debug = False
|
78 |
-
share = True) # generate a publically shareable URL
|
|
|
74 |
)
|
75 |
|
76 |
#Launch the demo:
|
77 |
+
demo.launch(debug = False) # Don't need share = True in Hugging Face Spaces
|
|