Spaces:
Sleeping
Sleeping
File size: 358 Bytes
88878f9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
import pandas as pd
df = pd.read_csv("results.csv")
with gr.Blocks() as demo:
gr.Markdown("""<h1 align="center" id="space-title">Universities at Hugging Face</h1>""")
gr.Markdown("""This is from November 10 2023, it's not automatically updated.""")
gr_spaces = gr.Dataframe(df, interactive=False)
demo.launch(debug=True)
|