Spaces:
Running
Running
Update constants.py
Browse files- constants.py +7 -2
constants.py
CHANGED
@@ -15,9 +15,14 @@ CSV_DIR_SINGLE_DOMAIN_RESULTS = "./file/results_Single-Domain.csv"
|
|
15 |
COLUMN_NAMES = MODEL_INFO + ALL_RESULTS
|
16 |
COLUMN_NAMES_HUMAN = MODEL_INFO + HUMAN_DOMAIN_RESULTS
|
17 |
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
19 |
<div style='display: flex; align-items: center; justify-content: center; text-align: center;'>
|
20 |
-
<img src=
|
21 |
</div>
|
22 |
|
23 |
# OpenS2V-Eval Leaderboard
|
|
|
15 |
COLUMN_NAMES = MODEL_INFO + ALL_RESULTS
|
16 |
COLUMN_NAMES_HUMAN = MODEL_INFO + HUMAN_DOMAIN_RESULTS
|
17 |
|
18 |
+
url = "https://www.pnglog.com/6xm07l.png"
|
19 |
+
response = requests.get(url)
|
20 |
+
base64_str = base64.b64encode(response.content).decode('utf-8')
|
21 |
+
img_data_uri = f"data:image/png;base64,{base64_str}"
|
22 |
+
|
23 |
+
LEADERBORAD_INTRODUCTION = f"""
|
24 |
<div style='display: flex; align-items: center; justify-content: center; text-align: center;'>
|
25 |
+
<img src={img_data_uri} style='width: 400px; height: auto; margin-right: 10px;' />
|
26 |
</div>
|
27 |
|
28 |
# OpenS2V-Eval Leaderboard
|