rbanfield commited on
Commit
514f577
·
1 Parent(s): 02f78b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -150,6 +150,6 @@ with gr.Blocks() as demo:
150
  examples=["westminster.las"],
151
  cache_examples=False,
152
  description="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.",
153
- )
154
 
155
- demo.queue(concurrency_count=512, max_size=512).launch()
 
150
  examples=["westminster.las"],
151
  cache_examples=False,
152
  description="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.",
153
+ ).queue(concurrency_count=512, max_size=512)
154
 
155
+ demo.launch()