Spaces:
Runtime error
Runtime error
File size: 524 Bytes
201ef5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
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()
|