Spaces:
Runtime error
Runtime error
Added icon and queue
Browse files- .gitignore +1 -0
- app.py +1 -1
- assets/favicon-32x32.png +0 -0
.gitignore
CHANGED
@@ -1,3 +1,4 @@
|
|
1 |
.vscode/launch.json
|
2 |
*.pyc
|
3 |
gradio_cached_examples/*
|
|
|
|
1 |
.vscode/launch.json
|
2 |
*.pyc
|
3 |
gradio_cached_examples/*
|
4 |
+
gradio_queue.db*
|
app.py
CHANGED
@@ -43,4 +43,4 @@ with gr.Blocks(analytics_enabled=False, title="DeepNAPSI") as demo:
|
|
43 |
fn=infer.predict, cache_examples=True)
|
44 |
image_button.click(infer.predict, inputs=image_input, outputs=outputs)
|
45 |
|
46 |
-
demo.launch(share=True)
|
|
|
43 |
fn=infer.predict, cache_examples=True)
|
44 |
image_button.click(infer.predict, inputs=image_input, outputs=outputs)
|
45 |
|
46 |
+
demo.launch(share=True, enable_queue=True, favicon_path="assets/favicon-32x32.png")
|
assets/favicon-32x32.png
ADDED