Skip to content

User_Enable Auto Submit Phase Migration

William French edited this page Jun 26, 2014 · 6 revisions

Enabling Automatic Submission and Phase Migration

The automatic submission feature automatically adds submissions to the leaderboard. Phase migration facilitates migrating submissions from phase to phase. This saves participants from having to download and re-upload submissions when moving between phases.

How to Enable Automatic Submission

Follow these steps to enable automatic submission for a competition.

  1. Open competition.yaml in a text editor.

  2. Use the force_submission_to_leaderboard key to toggle the feature by adding the following line at the top (as a peer to title, description, etc.).

    force_submission_to_leaderboard: true

    A value of true enables the feature; false disables it.

  3. Save your changes.

How to Enable Phase Migration

  1. Open competition.yaml in a text editor.

  2. 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
         ...
    
    
  3. Save your changes.

Clone this wiki locally