xinjie.wang commited on
Commit
c9edaef
·
1 Parent(s): 3a8a46a
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -269,15 +269,15 @@ with gr.Blocks(
269
  loop=True,
270
  height=300,
271
  )
272
- model_output_gs = LitModel3D(
273
- label="Gaussian Representation", height=300
274
  )
275
  aligned_gs = gr.Textbox(visible=False)
276
  with gr.Row():
277
- model_output_mesh = LitModel3D(
278
  label="Mesh Representation",
279
  height=300,
280
- exposure=10,
281
  )
282
  gr.Markdown(
283
  """ The rendering of `Gaussian Representation` takes additional 10s. """ # noqa
 
269
  loop=True,
270
  height=300,
271
  )
272
+ model_output_gs = gr.Model3D(
273
+ label="Gaussian Representation", height=300, interactive=False
274
  )
275
  aligned_gs = gr.Textbox(visible=False)
276
  with gr.Row():
277
+ model_output_mesh = gr.Model3D(
278
  label="Mesh Representation",
279
  height=300,
280
+ interactive=False
281
  )
282
  gr.Markdown(
283
  """ The rendering of `Gaussian Representation` takes additional 10s. """ # noqa