Spaces:
Running
Running
yadonglu
commited on
Commit
·
c1dc596
1
Parent(s):
b20c0ea
demo.queue
Browse files- .gitignore +5 -0
- app.py +2 -1
.gitignore
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.gradio
|
2 |
+
__pycache__/
|
3 |
+
util/__pycache__/
|
4 |
+
wget-log
|
5 |
+
weights/.cache/
|
app.py
CHANGED
@@ -108,4 +108,5 @@ with gr.Blocks() as demo:
|
|
108 |
)
|
109 |
|
110 |
# demo.launch(debug=False, show_error=True, share=True)
|
111 |
-
demo.launch(share=True, server_port=7861, server_name='0.0.0.0')
|
|
|
|
108 |
)
|
109 |
|
110 |
# demo.launch(debug=False, show_error=True, share=True)
|
111 |
+
# demo.launch(share=True, server_port=7861, server_name='0.0.0.0')
|
112 |
+
demo.queue().launch(share=False)
|