Spaces:
Runtime error
Runtime error
import gradio as gr | |
import numpy as np | |
import pandas as pd | |
pd.options.plotting.backend = "plotly" | |
with gr.Blocks() as demo: | |
gr.Markdown("# π€ Diffusion Cluster Explorer") | |
gr.Markdown(_ABSTRACT) | |
with gr.Tab("Exploring all professions together"): | |
gr.Markdown( | |
"TODO" | |
) | |
with gr.Row(): | |
with gr.Row(): | |
with gr.Accordion("Tag Frequencies", open=False): | |
with gr.Tab("Tab 2"): | |
gr.Markdown("TODO" | |
) | |
demo.launch() | |