Update app.py
Browse files
app.py
CHANGED
@@ -61,6 +61,15 @@ with gr.Blocks() as demo:
|
|
61 |
)
|
62 |
|
63 |
with gr.TabItem("Floor Plan Recognition"):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
with gr.Row():
|
65 |
with gr.Column():
|
66 |
app_input = gr.Image(type='filepath')
|
|
|
61 |
)
|
62 |
|
63 |
with gr.TabItem("Floor Plan Recognition"):
|
64 |
+
gr.Markdown(
|
65 |
+
"""
|
66 |
+
##### Docker Hub - https://hub.docker.com/r/rasterscan/floor-plan-recognition
|
67 |
+
```bash
|
68 |
+
sudo docker pull rasterscan/floor-plan-recognition:latest-cpu
|
69 |
+
sudo docker run --name rasterscan-service -d -p 8888:8888 rasterscan/floor-plan-recognition:latest-cpu
|
70 |
+
```
|
71 |
+
"""
|
72 |
+
)
|
73 |
with gr.Row():
|
74 |
with gr.Column():
|
75 |
app_input = gr.Image(type='filepath')
|