Skip to content

Commit

Permalink
put config back on top
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbuc committed Mar 8, 2024
1 parent 3bc13ec commit 089ed73
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
26 changes: 11 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

<div>
Expand Down Expand Up @@ -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
---
4 changes: 2 additions & 2 deletions app.py → leaderboard/app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from apscheduler.schedulers.background import BackgroundScheduler
from leaderboard.content import (
from content import (
TITLE,
BANNER,
INTRO,
Expand All @@ -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)

Expand Down

0 comments on commit 089ed73

Please sign in to comment.