davidberenstein1957 commited on
Commit
83c9fd8
·
1 Parent(s): 099bd02

Add citation section and community links to app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -0
app.py CHANGED
@@ -53,11 +53,31 @@ with gr.Blocks("ParityError/Interstellar") as demo:
53
  select_columns=df.columns.tolist(),
54
  datatype="markdown",
55
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  with gr.TabItem("About"):
57
  gr.Markdown(
58
  """
59
  # About InfraBench
60
  InfraBench is a leaderboard for inference providers, focusing on cost, quality, and compression.
 
 
 
 
 
 
 
61
  """
62
  )
63
 
 
53
  select_columns=df.columns.tolist(),
54
  datatype="markdown",
55
  )
56
+ with gr.Accordion("Citation", open=True):
57
+ gr.Markdown(
58
+ """
59
+ ```bibtex
60
+ @article{InfraBench,
61
+ title={InfraBench: A Leaderboard for Inference Providers},
62
+ author={PrunaAI},
63
+ year={2025},
64
+ howpublished={\\url{https://huggingface.co/spaces/PrunaAI/InferBench}}
65
+ }
66
+ ```
67
+ """
68
+ )
69
  with gr.TabItem("About"):
70
  gr.Markdown(
71
  """
72
  # About InfraBench
73
  InfraBench is a leaderboard for inference providers, focusing on cost, quality, and compression.
74
+
75
+ <h1>🌍 Join the Pruna AI community!</h1>
76
+ <p><a rel="nofollow" href="https://twitter.com/PrunaAI"><img alt="Twitter" src="https://img.shields.io/twitter/follow/PrunaAI?style=social"></a>
77
+ <a rel="nofollow" href="https://github.com/PrunaAI/pruna"><img alt="GitHub" src="https://img.shields.io/github/stars/prunaai/pruna"></a>
78
+ <a rel="nofollow" href="https://www.linkedin.com/company/93832878/admin/feed/posts/?feedType=following"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-Connect-blue"></a>
79
+ <a rel="nofollow" href="https://discord.com/invite/rskEr4BZJx"><img alt="Discord" src="https://img.shields.io/badge/Discord-Join%20Us-blue?style=social&amp;logo=discord"></a>
80
+ <a rel="nofollow" href="https://www.reddit.com/r/PrunaAI/"><img alt="Reddit" src="https://img.shields.io/reddit/subreddit-subscribers/PrunaAI?style=social"></a></p>
81
  """
82
  )
83