aliabd's picture
aliabd HF Staff
Upload folder using huggingface_hub
fa686a8 verified
raw
history blame contribute delete
159 Bytes
import gradio as gr
from data import df
with gr.Blocks() as demo:
gr.ScatterPlot(df, x="weight", y="height")
if __name__ == "__main__":
demo.launch()