rbanfield commited on
Commit
0c32315
·
1 Parent(s): e14cf55

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -140,8 +140,11 @@ def predict(input_file):
140
 
141
  return html_content
142
 
143
- gr.HTML("<img src=\"TrimbleAI_Logo_Blue.png\">")
144
- gr.Markdown("#Point Cloud Segmentation - Trimble Cloud")
 
 
 
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"),