Spaces:
AIR-Bench
/
Running on CPU Upgrade

nan commited on
Commit
982af90
1 Parent(s): 69a9e46

feat: add preview tag

Browse files
Files changed (2) hide show
  1. src/about.py +3 -2
  2. src/read_evals.py +1 -1
src/about.py CHANGED
@@ -1,9 +1,10 @@
1
  # Your leaderboard name
2
- TITLE = """<h1 align="center" id="space-title">AIR-Bench</h1>"""
 
3
 
4
  # What does your leaderboard evaluate?
5
  INTRODUCTION_TEXT = """
6
- AIR-Bench: Automated Heterogeneous Information Retrieval Benchmark
7
  """
8
 
9
  # Which evaluations are you running? how can people reproduce what you have?
 
1
  # Your leaderboard name
2
+ TITLE = """<h1 align="center" id="space-title">AIR-Bench: Automated Heterogeneous Information Retrieval Benchmark
3
+ (Preview) </h1>"""
4
 
5
  # What does your leaderboard evaluate?
6
  INTRODUCTION_TEXT = """
7
+ Check more information at [our GitHub repo](https://github.com/AIR-Bench/AIR-Bench)
8
  """
9
 
10
  # Which evaluations are you running? how can people reproduce what you have?
src/read_evals.py CHANGED
@@ -133,7 +133,7 @@ class FullEvalResult:
133
  domain = result["domain"]
134
  lang = result["lang"]
135
  dataset = result["dataset"]
136
- value = result["value"]
137
  if dataset == 'default':
138
  benchmark_name = f"{domain}_{lang}"
139
  else:
 
133
  domain = result["domain"]
134
  lang = result["lang"]
135
  dataset = result["dataset"]
136
+ value = result["value"] * 100
137
  if dataset == 'default':
138
  benchmark_name = f"{domain}_{lang}"
139
  else: