hysts HF Staff commited on
Commit
c39d31f
·
1 Parent(s): cae5a8c
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -323,8 +323,16 @@ with gr.Blocks(delete_cache=(600, 600)) as demo:
323
  api_name=False,
324
  )
325
 
326
- extract_glb_btn.click(fn=extract_glb, inputs=[state_file, mesh_simplify, texture_size], outputs=model_output)
327
- extract_gs_btn.click(fn=extract_gaussian, inputs=state_file, outputs=model_output)
 
 
 
 
 
 
 
 
328
 
329
  if __name__ == "__main__":
330
  demo.launch(mcp_server=True)
 
323
  api_name=False,
324
  )
325
 
326
+ extract_glb_btn.click(
327
+ fn=extract_glb,
328
+ inputs=[state_file, mesh_simplify, texture_size],
329
+ outputs=model_output,
330
+ )
331
+ extract_gs_btn.click(
332
+ fn=extract_gaussian,
333
+ inputs=state_file,
334
+ outputs=model_output,
335
+ )
336
 
337
  if __name__ == "__main__":
338
  demo.launch(mcp_server=True)