change text
Browse files- README.md +1 -1
- app.py +3 -3
- src/about.py +1 -1
- src/envs.py +1 -1
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title: Leaderboard
|
3 |
emoji: π₯
|
4 |
colorFrom: green
|
5 |
colorTo: indigo
|
|
|
1 |
---
|
2 |
+
title: Multimodal Hallucination Leaderboard
|
3 |
emoji: π₯
|
4 |
colorFrom: green
|
5 |
colorTo: indigo
|
app.py
CHANGED
@@ -42,9 +42,9 @@ with demo:
|
|
42 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
43 |
|
44 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
45 |
-
show_result_page(root_path='VH', title='π
|
46 |
-
show_result_page(root_path='AVH-visual', title='πΊ AVHalluBench Visual', index=1)
|
47 |
-
show_result_page(root_path='AVH-audio', title='π AVHalluBench Audio', index=2)
|
48 |
show_about_page(index=3)
|
49 |
show_submit_page(index=4)
|
50 |
|
|
|
42 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
43 |
|
44 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
45 |
+
show_result_page(root_path='VH', title='π Image-to-Text Hallucination', index=0)
|
46 |
+
show_result_page(root_path='AVH-visual', title='πΊ AVHalluBench (Visual)', index=1)
|
47 |
+
show_result_page(root_path='AVH-audio', title='π AVHalluBench (Audio)', index=2)
|
48 |
show_about_page(index=3)
|
49 |
show_submit_page(index=4)
|
50 |
|
src/about.py
CHANGED
@@ -6,7 +6,7 @@ from enum import Enum
|
|
6 |
NUM_FEWSHOT = 0 # Change with your few shot
|
7 |
# ---------------------------------------------------
|
8 |
|
9 |
-
TITLE = """<h1 align="center" id="space-title">
|
10 |
|
11 |
INTRODUCTION_TEXT = """
|
12 |
"""
|
|
|
6 |
NUM_FEWSHOT = 0 # Change with your few shot
|
7 |
# ---------------------------------------------------
|
8 |
|
9 |
+
TITLE = """<h1 align="center" id="space-title">Multimodal Hallucination Leaderboard</h1>"""
|
10 |
|
11 |
INTRODUCTION_TEXT = """
|
12 |
"""
|
src/envs.py
CHANGED
@@ -10,7 +10,7 @@ TOKEN = os.environ.get("TOKEN") # A read/write token for your org
|
|
10 |
OWNER = "scb10x" # Change to your org - don't forget to create a results and request dataset, with the correct format!
|
11 |
# ----------------------------------
|
12 |
|
13 |
-
REPO_ID = f"{OWNER}/
|
14 |
QUEUE_REPO = f"{OWNER}/av_hallucination_requests"
|
15 |
RESULTS_REPO = f"{OWNER}/av_hallucination_results"
|
16 |
|
|
|
10 |
OWNER = "scb10x" # Change to your org - don't forget to create a results and request dataset, with the correct format!
|
11 |
# ----------------------------------
|
12 |
|
13 |
+
REPO_ID = f"{OWNER}/multimodal-hallucination-leaderboard"
|
14 |
QUEUE_REPO = f"{OWNER}/av_hallucination_requests"
|
15 |
RESULTS_REPO = f"{OWNER}/av_hallucination_results"
|
16 |
|