Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -140,8 +140,11 @@ def predict(input_file):
|
|
140 |
|
141 |
return html_content
|
142 |
|
143 |
-
gr.
|
144 |
-
gr.
|
|
|
|
|
|
|
145 |
demo = gr.Interface(
|
146 |
fn=predict,
|
147 |
inputs=gr.File(file_types=[".las"], file_count="single"),
|
|
|
140 |
|
141 |
return html_content
|
142 |
|
143 |
+
with gr.Blocks() as demo:
|
144 |
+
gr.HTML("<img src=\"TrimbleAI_Logo_Blue.png\">")
|
145 |
+
gr.Markdown("#Point Cloud Segmentation - Trimble Cloud")
|
146 |
+
|
147 |
+
|
148 |
demo = gr.Interface(
|
149 |
fn=predict,
|
150 |
inputs=gr.File(file_types=[".las"], file_count="single"),
|