Skip to content

Commit

Permalink
Fix Jekyll error
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywonchung committed Jan 10, 2024
1 parent 1f4ddf2 commit 7648794
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,21 @@ def plot_scatter(self, width, height, x, y, z):
Every benchmark is limited in some sense -- Before you interpret the results, please take a look at the <b>Limitations</b> section there, too.</p>
"""

citation_text = r"""
@misc{ml-energy-leaderboard,
author={Jae-Won Chung and Jiachen Liu and Zhiyu Wu and Yuxuan Xia and Mosharaf Chowdhury},
title={\{ML.ENERGY\} Leaderboard},
year={2023},
howpublished={\url{https://ml.energy/leaderboard}},
}
@inproceedings{zeus:nsdi23,
author={Jie You and Jae-Won Chung and Mosharaf Chowdhury},
booktitle={USENIX NSDI},
title={Zeus: Understanding and Optimizing {GPU} Energy Consumption of {DNN} Training},
year={2023},
}
"""

# The app will not start without a controller address set.
controller_addr = os.environ.get("COLOSSEUM_CONTROLLER_ADDR")
if controller_addr is None:
Expand Down Expand Up @@ -797,7 +812,6 @@ def play_again():

# Citation
with gr.Accordion("📚 Citation", open=False, elem_id="citation-header"):
citation_text = open("docs/citation.bib").read()
gr.Textbox(
value=citation_text,
label="BibTeX for the leaderboard and the Zeus framework used for benchmarking:",
Expand Down

0 comments on commit 7648794

Please sign in to comment.