from instant_splat.gradio_ui.multi_img_ui import multi_img_block import gradio as gr title = """# InstantSplat: Unofficial Demo of Sparse-view SfM-free Gaussian Splatting in Seconds""" description1 = """ badge-github-stars social """ description2 = "Using Rerun to visualize the results of InstantSplat" with gr.Blocks() as demo: gr.Markdown(title) gr.Markdown(description1) gr.Markdown(description2) with gr.Tab(label="Multi Image"): multi_img_block.render() if __name__ == "__main__": demo.launch()