Abhishek Thakur
commited on
Commit
·
a62a427
1
Parent(s):
af85c31
add token info
Browse files- competitions/text.py +2 -1
competitions/text.py
CHANGED
@@ -3,12 +3,13 @@ The test data has been divided into public and private splits.
|
|
3 |
Your score on the public split will be shown on the leaderboard.
|
4 |
Your final score will be based on your private split performance.
|
5 |
The final rankings will be based on the private split performance.
|
|
|
6 |
"""
|
7 |
|
8 |
SUBMISSION_ERROR = """Submission is not in a proper format.
|
9 |
Please check evaluation instructions for more details."""
|
10 |
|
11 |
-
SUBMISSION_SELECTION_TEXT = """You can select upto {} submissions for private leaderboard."""
|
12 |
|
13 |
NO_SUBMISSIONS = """You have not made any submissions yet."""
|
14 |
|
|
|
3 |
Your score on the public split will be shown on the leaderboard.
|
4 |
Your final score will be based on your private split performance.
|
5 |
The final rankings will be based on the private split performance.
|
6 |
+
You can find your Hugging Face token [here](https://huggingface.co/settings/token)
|
7 |
"""
|
8 |
|
9 |
SUBMISSION_ERROR = """Submission is not in a proper format.
|
10 |
Please check evaluation instructions for more details."""
|
11 |
|
12 |
+
SUBMISSION_SELECTION_TEXT = """You can select upto {} submissions for private leaderboard. You can find your Hugging Face token [here](https://huggingface.co/settings/token)"""
|
13 |
|
14 |
NO_SUBMISSIONS = """You have not made any submissions yet."""
|
15 |
|