Spaces:
Sleeping
Sleeping
fix app.py to remove share=True
Browse files
app.py
CHANGED
@@ -67,5 +67,4 @@ demo = gr.Interface(fn=predict, # maps inputs to output
|
|
67 |
article=article)
|
68 |
|
69 |
# Launch the demo!
|
70 |
-
demo.launch(debug=False
|
71 |
-
share=True) # generate a publically shareable URL
|
|
|
67 |
article=article)
|
68 |
|
69 |
# Launch the demo!
|
70 |
+
demo.launch(debug=False) # Don't need share=True in HuggingFace
|
|