Update app.py
Browse files
app.py
CHANGED
@@ -27,8 +27,33 @@ def display_leaderboard():
|
|
27 |
|
28 |
# Create a simple Gradio interface
|
29 |
with gr.Blocks(title="VideoConviction LLM Leaderboard") as demo:
|
30 |
-
gr.Markdown("
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
gr.Dataframe(display_leaderboard, interactive=False)
|
33 |
|
34 |
demo.launch()
|
|
|
27 |
|
28 |
# Create a simple Gradio interface
|
29 |
with gr.Blocks(title="VideoConviction LLM Leaderboard") as demo:
|
30 |
+
gr.Markdown("""
|
31 |
+
# VideoConviction: A Multimodal Benchmark for Human Conviction and Stock Market Recommendations
|
32 |
+
|
33 |
+
**Paper**: [VideoConviction: A Multimodal Benchmark for Human Conviction and Stock Market Recommendations](https://doi.org/10.1145/3711896.3737417)
|
34 |
+
**Conference**: ACM SIGKDD 2025
|
35 |
+
**Authors**: Michael Galarnyk, Veer Kejriwal, Agam Shah, Yash Bhardwaj, Nicholas Watney Meyer, Anand Krishnan, Sudheer Chava
|
36 |
+
|
37 |
+
## Citation
|
38 |
+
|
39 |
+
If you use this dataset, please cite our paper:
|
40 |
+
|
41 |
+
```bibtex
|
42 |
+
@inproceedings{galarnyk2025videoconviction,
|
43 |
+
author = {Michael Galarnyk and Veer Kejriwal and Agam Shah and Yash Bhardwaj and Nicholas Watney Meyer and Anand Krishnan and Sudheer Chava},
|
44 |
+
title = {VideoConviction: A Multimodal Benchmark for Human Conviction and Stock Market Recommendations},
|
45 |
+
booktitle = {Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V.2 (KDD '25)},
|
46 |
+
year = {2025},
|
47 |
+
location = {Toronto, ON, Canada},
|
48 |
+
pages = {12},
|
49 |
+
publisher = {ACM},
|
50 |
+
doi = {10.1145/3711896.3737417}
|
51 |
+
}
|
52 |
+
```
|
53 |
+
|
54 |
+
# VideoConviction Benchmark Leaderboard
|
55 |
+
This leaderboard shows the F1 scores of various LLMs and MLLMs across the VideoConviction benchmark tasks.
|
56 |
+
""")
|
57 |
gr.Dataframe(display_leaderboard, interactive=False)
|
58 |
|
59 |
demo.launch()
|