LongVideoBench / app.py
Teo Wu
1
396bb92
raw
history blame
604 Bytes
import gradio as gr
import pandas as pd
block = gr.Blocks(title="LongVideoBench Leaderboard")
with block:
#gr.Markdown(
# LEADERBORAD_INTRODUCTION
#)
with gr.Tab("Results"):
data = pd.read_csv("result.csv")
df_sorted = data.sort_values(by='Test Total', ascending=False)
gr.DataFrame(df_sorted)
with gr.Tab("Submit to LongVideoBench (coming soon!)"):
gr.Markdown(
"To submit to LongVideoBench, please contact haoning001@e.ntu.edu.sg now. We will launch an automatic submission server soon."
)
block.launch()