Submission Failure: Error Analysis and Possibility of Modifying requirements.txt ¶
By: chpark on April 14, 2025, 4:24 a.m.
I have built an initial version of the training pipeline and successfully registered an algorithm for the submission sanity check. However, the submission failed with the message:
"The algorithm failed on one or more cases."
(Prior to submission, I have verified that the algorithm runs successfully using do_test_run.sh
in the provided environment without any issues.)
I suspect that the most likely reason for this issue is that I modified the provided requirements.txt file to match the library versions used in my local training environment when building the Docker image, as shown below:
--extra-index-url https://download.pytorch.org/whl/cu118 torch==2.4.1 torchvision==0.19.1 numpy==2.2.4 scipy==1.15.2 pandas==2.2.3 SimpleITK==2.4.1 tqdm
In this regard, I would like to kindly ask the following:
1) Is it possible to obtain a more detailed error log or analysis to identify the exact cause of the failure?
2) Am I allowed to modify the fixed versions in the provided requirements.txt file, or is there any flexibility to adjust specific library versions if necessary?
I would appreciate your guidance on this matter. Please let me know if you need any additional information from my side.
Thank you.