Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- 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()
|
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 |
|