Spaces:
Runtime error
Runtime error
File size: 290 Bytes
b449919 87d105f b449919 87d105f b449919 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/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()
|