kennymckormick
commited on
Commit
•
31a2232
1
Parent(s):
d496ac6
update leaderboard
Browse files- app.py +1 -0
- meta_data.py +1 -1
app.py
CHANGED
@@ -53,6 +53,7 @@ with gr.Blocks() as demo:
|
|
53 |
visible=True)
|
54 |
|
55 |
def filter_df(fields, model_size, model_type):
|
|
|
56 |
filter_list = ['Avg Score', 'Avg Rank', 'OpenSource', 'Verified']
|
57 |
headers = check_box['essential'] + fields
|
58 |
new_fields = [field for field in fields if field not in filter_list]
|
|
|
53 |
visible=True)
|
54 |
|
55 |
def filter_df(fields, model_size, model_type):
|
56 |
+
results = load_results()
|
57 |
filter_list = ['Avg Score', 'Avg Rank', 'OpenSource', 'Verified']
|
58 |
headers = check_box['essential'] + fields
|
59 |
new_fields = [field for field in fields if field not in filter_list]
|
meta_data.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
# CONSTANTS-URL
|
2 |
-
URL = "http://opencompass.openxlab.space/
|
3 |
VLMEVALKIT_README = 'https://raw.githubusercontent.com/open-compass/VLMEvalKit/main/README.md'
|
4 |
# CONSTANTS-CITATION
|
5 |
CITATION_BUTTON_TEXT = r"""@misc{2023opencompass,
|
|
|
1 |
# CONSTANTS-URL
|
2 |
+
URL = "http://opencompass.openxlab.space/assets/OpenVLM.json"
|
3 |
VLMEVALKIT_README = 'https://raw.githubusercontent.com/open-compass/VLMEvalKit/main/README.md'
|
4 |
# CONSTANTS-CITATION
|
5 |
CITATION_BUTTON_TEXT = r"""@misc{2023opencompass,
|