Spaces:
Runtime error
Runtime error
| #!/usr/bin/env python | |
| import gradio as gr | |
| import pandas as pd | |
| df = pd.DataFrame([{ | |
| 'title': | |
| 'DORSal: Diffusion for Object-centric Representations of Scenes\n $\\textit{et al.}$' | |
| }]) | |
| with gr.Blocks() as demo: | |
| gr.Dataframe(value=df, datatype='markdown') | |
| demo.queue().launch() | |