-
Notifications
You must be signed in to change notification settings - Fork 129
User_Enable Auto Submit Phase Migration
The automatic submission feature automatically adds submissions to the leaderboard. Phase migration facilitates migrating submissions from phase to phase, saving participants from having to download and re-upload submissions when moving between phases.
Follow these steps to enable automatic submission for a competition.
-
Open competition.yaml in a text editor.
-
Use the
force_submission_to_leaderboard
key to toggle the feature by adding the following line at the top (as a peer totitle
,description
, etc.).force_submission_to_leaderboard: true
A value of true enables the feature; false disables it.
-
Save your changes.
If the competition has already been uploaded to CodaLab, you can toggle this feature by editing the competition and checking/un-checking Force submission to leaderboard under General Information.
-
Open competition.yaml in a text editor.
-
For each phase, use the
auto_migration
key to enable/disable automatic migration for each phase.... phases: 0: auto_migration: true # Enable auto ... 1: auto_migration: false # don't do migrations for this phase ...
A value of true enables the feature; false disables it.
-
Save your changes.
If the competition has already been uploaded to CodaLab, you can toggle this feature by editing the competition and checking/un-checking Auto migration under the appropriate Competition Phase.