Common submission errors ¶
By: jdex on July 26, 2024, 10:27 a.m.
A small QA on questions we get regarding the submission:
Q: I created an algorithm but haven't received any mail whether my submission was successful or not.
A: After creating an algorithm you have to go back to the submission panel on the challenge website and submit the created algorithm to the desired phase
Q: My algorithm failed on one or more cases. Whats wrong?
A: More specific error descriptions can be found when you look at your algorithm results. For that please go to your algorithm/ALGO_NAME/results (https://grand-challenge.org/algorithms/ALGO_NAME/jobs/) and click on the error.
Most common errors:
- Output directory 'images/automated-petct-lesion-segmentation' is empty. Your final segmentation was not written to the dedicated output path.
- Output file 'data-centric-model.json' was not produced. The category json was not written to the dedicated output path.
- Time limit exceeded. Your algorithm took longer than 5min for one case. If your algorithm fails on just one case the whole submission will fail. If your algorithm is at the edge of 5min you could also implement a timer or a function which just saves an empty mask at the beginning. This will reduce your performance but ensures, that you predict all cases.
- RuntimeError: Current CUDA Device does not support bfloat16. Please switch dtype to float16.
- The output file 'data-centric-model.json' is not valid. JSON does not fulfill schema: instance is not of type 'boolean'. The json should just contain a single boolean. Please use the code from the baselines to save the file.
Q: Can you share some test samples?
A: The data for the preliminary submission is drawn from the public train dataset (you could search for the largest file by filesize and the file with highest number of lesions) and the final test data wont be released.