Arnav Chavan commited on
Commit
f0351ab
1 Parent(s): c5bc8e4

added citation

Browse files
Files changed (2) hide show
  1. src/content.py +2 -2
  2. src/llm_perf.py +2 -2
src/content.py CHANGED
@@ -41,10 +41,10 @@ These metrics collectively address the unique challenges of deploying LLMs on ed
41
 
42
  CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results."
43
  CITATION_BUTTON = r"""@misc{edge-llm-leaderboard,
44
- author = {},
45
  title = {Edge LLM Leaderboard},
46
  year = {2024},
47
- publisher = {},
48
  howpublished = "\url{https://huggingface.co/spaces/nyunai/edge-llm-leaderboard}",
49
  }
50
  """
 
41
 
42
  CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results."
43
  CITATION_BUTTON = r"""@misc{edge-llm-leaderboard,
44
+ author = {Arnav Chavan, Deepak Gupta, Ishan Pandey and The HuggingFace team},
45
  title = {Edge LLM Leaderboard},
46
  year = {2024},
47
+ publisher = {Hugging Face},
48
  howpublished = "\url{https://huggingface.co/spaces/nyunai/edge-llm-leaderboard}",
49
  }
50
  """
src/llm_perf.py CHANGED
@@ -66,8 +66,8 @@ def processed_llm_perf_df(llm_perf_df):
66
  {
67
  "Prefill (tokens/s)": 3,
68
  "Decode (tokens/s)": 3,
69
- "Model Size (GB)": 3,
70
- "#Params (B)": 3,
71
  "MMLU Accuracy": 1,
72
  }
73
  )
 
66
  {
67
  "Prefill (tokens/s)": 3,
68
  "Decode (tokens/s)": 3,
69
+ "Model Size (GB)": 1,
70
+ "#Params (B)": 1,
71
  "MMLU Accuracy": 1,
72
  }
73
  )