zhuohan-7 commited on
Commit
1441195
·
verified ·
1 Parent(s): 0a3f68a

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app/draw_diagram.py +1 -1
app/draw_diagram.py CHANGED
@@ -47,7 +47,7 @@ links_dic = {"random": "https://seaeval.github.io/",
47
  "LLaMA_3_Merlion_8B": "https://seaeval.github.io/",
48
  "LLaMA_3_Merlion_8B_v1_1": "https://seaeval.github.io/"}
49
 
50
- links_dic = {k.lower() : v.replace('_', '-') for k, v in links_dic.items()}
51
 
52
  # huggingface_image = Image.open('style/huggingface.jpg')
53
 
 
47
  "LLaMA_3_Merlion_8B": "https://seaeval.github.io/",
48
  "LLaMA_3_Merlion_8B_v1_1": "https://seaeval.github.io/"}
49
 
50
+ links_dic = {k.lower().replace('_', '-') : v for k, v in links_dic.items()}
51
 
52
  # huggingface_image = Image.open('style/huggingface.jpg')
53