freddyaboulton's picture
Upload folder using huggingface_hub
db96f1f verified
raw
history blame
178 Bytes
import gradio as gr
from data import df # type: ignore
with gr.Blocks() as demo:
gr.ScatterPlot(df, x="ethnicity", y="height")
if __name__ == "__main__":
demo.launch()