diff --git a/README.md b/README.md index 66bf0f9..88c2072 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ +--- +title: Genception Leaderboard +emoji: 🔥 +colorFrom: red +colorTo: green +sdk: gradio +sdk_version: 4.19.2 +app_file: leaderboard/app.py +pinned: true +--- + # GenCeption: Evaluate Multimodal LLMs with Unlabeled Unimodal Data
@@ -53,18 +64,3 @@ The MME dataset, of which the image modality was used in our paper, can be obtai primaryClass={cs.AI,cs.CL,cs.LG} } ``` - -## HF Space config - -Please dont be distracted by this content - it just configues the [🤗 Leaderboard](https://huggingface.co/spaces/valbuc/GenCeption). - ---- -title: Genception Leaderboard -emoji: 🔥 -colorFrom: red -colorTo: green -sdk: gradio -sdk_version: 4.19.2 -app_file: app.py -pinned: true ---- diff --git a/app.py b/leaderboard/app.py similarity index 96% rename from app.py rename to leaderboard/app.py index 18e6d9d..061f8c7 100644 --- a/app.py +++ b/leaderboard/app.py @@ -1,5 +1,5 @@ from apscheduler.schedulers.background import BackgroundScheduler -from leaderboard.content import ( +from content import ( TITLE, BANNER, INTRO, @@ -17,7 +17,7 @@ def update_data(): global df - with open("leaderboard/leaderboard.json", "r") as f: + with open("/leaderboard.json", "r") as f: data = json.load(f) df = create_dataframe(data)