Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -141,13 +141,13 @@ def predict(input_file):
|
|
141 |
return html_content
|
142 |
|
143 |
demo = gr.Interface(
|
144 |
-
title="Trimble AI 3D Point Cloud Segmentation",
|
145 |
fn=predict,
|
146 |
inputs=gr.File(file_types=[".las"], file_count="single"),
|
147 |
outputs=["html"],
|
148 |
examples=["westminster.las"],
|
149 |
cache_examples=False,
|
150 |
-
description="<img src=\"file/Trimble_AI_Logo_Blue.png\"><BR>This is a technology demonstration of Trimble AI's 3D Point Cloud Segmentation running on Trimble Cloud Core's Pegasus Processing Framework. The point cloud is uploaded on behalf of the user into Pegasus, then the result is offered as a downloadable link.",
|
151 |
).queue(concurrency_count=512, max_size=512)
|
152 |
|
153 |
demo.launch()
|
|
|
141 |
return html_content
|
142 |
|
143 |
demo = gr.Interface(
|
144 |
+
# title="Trimble AI 3D Point Cloud Segmentation",
|
145 |
fn=predict,
|
146 |
inputs=gr.File(file_types=[".las"], file_count="single"),
|
147 |
outputs=["html"],
|
148 |
examples=["westminster.las"],
|
149 |
cache_examples=False,
|
150 |
+
description="<img src=\"file/Trimble_AI_Logo_Blue.png\" alt="Trimble AI Logo" class="center"><BR>This is a technology demonstration of Trimble AI's 3D Point Cloud Segmentation running on Trimble Cloud Core's Pegasus Processing Framework. The point cloud is uploaded on behalf of the user into Pegasus, then the result is offered as a downloadable link.",
|
151 |
).queue(concurrency_count=512, max_size=512)
|
152 |
|
153 |
demo.launch()
|