import gradio as gr from load_base_model_data import load_data ds = load_data() with gr.Blocks() as demo: gr.DataFrame(ds.to_pandas()) demo.launch()