jcuenod
commited on
Commit
·
890af3f
1
Parent(s):
06d67a9
Update titles
Browse files- README.md +5 -3
- src/about.py +1 -1
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🥇
|
4 |
colorFrom: green
|
5 |
colorTo: indigo
|
@@ -14,6 +14,7 @@ license: apache-2.0
|
|
14 |
Most of the variables to change for a default leaderboard are in `src/env.py` (replace the path for your leaderboard) and `src/about.py` (for tasks).
|
15 |
|
16 |
Results files should have the following format and be stored as json files:
|
|
|
17 |
```json
|
18 |
{
|
19 |
"config": {
|
@@ -38,7 +39,8 @@ If you encounter problem on the space, don't hesitate to restart it to remove th
|
|
38 |
|
39 |
# Code logic for more complex edits
|
40 |
|
41 |
-
You'll find
|
|
|
42 |
- the main table' columns names and properties in `src/display/utils.py`
|
43 |
- the logic to read all results and request files, then convert them in dataframe lines, in `src/leaderboard/read_evals.py`, and `src/populate.py`
|
44 |
-
- the logic to allow or filter submissions in `src/submission/submit.py` and `src/submission/check_validity.py`
|
|
|
1 |
---
|
2 |
+
title: LRL MT Bible Leaderboard
|
3 |
emoji: 🥇
|
4 |
colorFrom: green
|
5 |
colorTo: indigo
|
|
|
14 |
Most of the variables to change for a default leaderboard are in `src/env.py` (replace the path for your leaderboard) and `src/about.py` (for tasks).
|
15 |
|
16 |
Results files should have the following format and be stored as json files:
|
17 |
+
|
18 |
```json
|
19 |
{
|
20 |
"config": {
|
|
|
39 |
|
40 |
# Code logic for more complex edits
|
41 |
|
42 |
+
You'll find
|
43 |
+
|
44 |
- the main table' columns names and properties in `src/display/utils.py`
|
45 |
- the logic to read all results and request files, then convert them in dataframe lines, in `src/leaderboard/read_evals.py`, and `src/populate.py`
|
46 |
+
- the logic to allow or filter submissions in `src/submission/submit.py` and `src/submission/check_validity.py`
|
src/about.py
CHANGED
@@ -21,7 +21,7 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
21 |
|
22 |
|
23 |
# Your leaderboard name
|
24 |
-
TITLE = """<h1 align="center" id="space-title">
|
25 |
|
26 |
# What does your leaderboard evaluate?
|
27 |
INTRODUCTION_TEXT = """
|
|
|
21 |
|
22 |
|
23 |
# Your leaderboard name
|
24 |
+
TITLE = """<h1 align="center" id="space-title">LRL MT Bible leaderboard</h1>"""
|
25 |
|
26 |
# What does your leaderboard evaluate?
|
27 |
INTRODUCTION_TEXT = """
|