Skip to content

Commit fe1c4ee

Browse files
Docs: Add docs for locking submission visibility to public (Cloud-CV#4767)
Co-authored-by: Rishabh Jain <rishabhjain2018@gmail.com>
1 parent 78eeeb2 commit fe1c4ee

2 files changed

Lines changed: 42 additions & 0 deletions

File tree

docs/source/02-for-challenge-hosts/configuration/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ challenge-phases-setup
1111
dataset-splits
1212
yaml-reference
1313
edit-challenge-configuration
14+
lock-submission-visibility
1415
```
1516

1617
For evaluation setup and configuration, checkout the Evaluation section:
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Lock Submission Visibility
2+
3+
By default, participants can toggle their submissions between public and private from the leaderboard view. If you want to remove this option and ensure that all submissions are always visible, you can configure it in your challenge's YAML file.
4+
5+
This feature is useful when challenge organizers may want to enforce full transparency to:
6+
- Prevent participants from concealing their performance
7+
8+
- Ensure all baselines and results remain visible to organizers and other participants.
9+
10+
## How to Lock Submission Visibility
11+
12+
1. Open your `challenge_config.yaml` file for the challenge phase you want to modify.
13+
14+
2. Locate or add the `is_submission_public` property in the challenge phase configuration.
15+
16+
3. Set it to `True` and ensure `leaderboard_public` is also set to `True`.
17+
18+
**Example:**
19+
20+
```yaml
21+
leaderboard_public: True
22+
is_submission_public: True
23+
```
24+
25+
## What happens when you lock/unlock submission visibility
26+
27+
- When `is_submission_public`: `True`
28+
29+
- All submissions in this phase are public by default.
30+
31+
- Participants cannot hide their submissions (the “Hide/Show” option is removed).
32+
33+
- When `is_submission_public`: `False` (default)
34+
35+
- Submissions are private by default, and participants can toggle their visibility.
36+
37+
## Important Notes
38+
39+
- This setting is applied per challenge phase, so repeat it for each phase where you want enforced visibility.
40+
41+
- If `leaderboard_public` is set to `False`, this setting has no effect.

0 commit comments

Comments
 (0)