-
Notifications
You must be signed in to change notification settings - Fork 129
Old Creating A Submission Bundle
Adrien Pavao edited this page Oct 20, 2022
·
1 revision
Submission bundles are zip files that come in two flavors:
-
Result submissions may contain whatever the competition requires.
JSON
files, images, anything! -
Code submissions must contain a
metadata
file describing how to run the submission.
For code submissions you must include a file in the root directory named metadata
.
Example metadata
file:
command: python $program/test.py $input $output $shared
Before your program is executed the following strings will be replaced with the corresponding data:
variable | description |
---|---|
$program | root directory containing your program |
$input | input directory containing competition data |
$output | directory to put your code results |
$shared | special directory to talk to ingestion program during your code submission |