submission
The submission creation helpers.
kelp.core.submission.create_submission_tar
Creates submission TAR archive.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
preds_dir |
Path
|
The directory with predictions. |
required |
output_dir |
Path
|
The output directory where the submission file will be saved. |
required |
submission_file_name |
str
|
The name of the submission file. |
'submission.tar'
|
Source code in kelp/core/submission.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
kelp.core.submission.main
Main entrypoint for creating submission from predictions directory.
Source code in kelp/core/submission.py
45 46 47 48 49 |
|
kelp.core.submission.parse_args
Parse command line arguments for making a submission file.
Source code in kelp/core/submission.py
16 17 18 19 20 21 22 23 24 |
|