sasha's picture
sasha HF staff
Create app.py
201ef5d
raw
history blame
524 Bytes
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()