potsawee commited on
Commit
dc61418
β€’
1 Parent(s): ed29d83

change text

Browse files
Files changed (4) hide show
  1. README.md +1 -1
  2. app.py +3 -3
  3. src/about.py +1 -1
  4. 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='πŸŽ† Visual Hallucination Benchmark', 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
 
 
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">AV Hallucination Leaderboard</h1>"""
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}/mllm-hallucinations-leaderboard"
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