ostapagon commited on
Commit
093d6f0
·
1 Parent(s): 665b2f0

Try to fix serialization error

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,7 +9,7 @@ import torch
9
  from mast3r.demo import get_args_parser
10
  from mast3r.utils.misc import hash_md5
11
  from mast3r_demo import mast3r_demo_tab
12
- from gs_demo import gs_demo_tab
13
 
14
  if __name__ == '__main__':
15
  # parser = get_args_parser()
@@ -33,8 +33,8 @@ if __name__ == '__main__':
33
  with gr.Tabs():
34
  with gr.Tab("MASt3R Demo"):
35
  mast3r_demo_tab(cache_path, weights_path, device)
36
- with gr.Tab("Gaussian Splatting Demo"):
37
- gs_demo_tab(cache_path)
38
 
39
  demo.launch(show_error=True, share=None, server_name=None, server_port=None)
40
  # demo.launch(show_error=True, share=None, server_name='0.0.0.0', server_port=5555)
 
9
  from mast3r.demo import get_args_parser
10
  from mast3r.utils.misc import hash_md5
11
  from mast3r_demo import mast3r_demo_tab
12
+ # from gs_demo import gs_demo_tab
13
 
14
  if __name__ == '__main__':
15
  # parser = get_args_parser()
 
33
  with gr.Tabs():
34
  with gr.Tab("MASt3R Demo"):
35
  mast3r_demo_tab(cache_path, weights_path, device)
36
+ # with gr.Tab("Gaussian Splatting Demo"):
37
+ # gs_demo_tab(cache_path)
38
 
39
  demo.launch(show_error=True, share=None, server_name=None, server_port=None)
40
  # demo.launch(show_error=True, share=None, server_name='0.0.0.0', server_port=5555)