freddyaboulton's picture
Upload app.py with huggingface_hub
d4dc97a
raw
history blame contribute delete
193 Bytes
import gradio as gr
import pandas as pd
def value_func():
return pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]})
with gr.Blocks() as demo:
gr.DataFrame(value=value_func)
demo.launch()