Failed The algorithm failed on one or more cases.

Failed The algorithm failed on one or more cases.  

  By: 516936971 on Sept. 2, 2024, 3:56 p.m.

Dear Challenge Organizers,

I hope this message finds you well.

I encountered the following error while submitting my algorithm: "Failed. The algorithm failed on one or more cases." Unfortunately, I am unable to view the specific error message or logs, making it difficult for me to identify the cause of the failure.

Could you please assist me in identifying the reason for the validation failure, or provide any relevant log information? This would greatly help me in debugging and improving the algorithm.

Thank you for your assistance.

Re: Failed The algorithm failed on one or more cases.  

  By: zoomlin0801 on Sept. 3, 2024, 4:37 a.m.

你好朋友,以下做法希望对你有帮助:

①参照主办方提供的docker提交示例,将Dockerfile最后一行改为:CMD ["sh", "run.sh"] 然后再运行docker build等相关操作,通过相关操作进行本地调试,本地调试无误之后再将Dockerfile最后一行改为:ENTRYPOINT ["python", "inference.py"]

②确定你的docker文件在本地可以正常运行之后,如果提交到该网站进行测评仍报错,有一种可能是因为代码中有许多“print”的命令,这会使得你的程序运行时间超过要求时限,你可以将其注释掉,重新提交进行测试。

Re: Failed The algorithm failed on one or more cases.  

  By: 516936971 on Sept. 3, 2024, 7:46 a.m.

非常感谢您!! 我现在可以提交了!! 祝您一切顺利。

Thank you so much for your comment!! Now I can submit my docker! Best regard

 Last edited by: 516936971 on Sept. 3, 2024, 9:37 a.m., edited 1 time in total.

Re: Failed The algorithm failed on one or more cases.  

  By: 516936971 on Sept. 3, 2024, 9:35 a.m.

Hi everyone,

I have some other question about the input data and output data.

1. I would like to confirm whether all the test data consists of 3D images. 2. Should I save my results in the range [0, 1] or [0, 255]?

I would greatly appreciate any insights or confirmation on these points. Thank you in advance for your help!

Best regards, Yunheng

Re: Failed The algorithm failed on one or more cases.  

  By: YingC on Sept. 3, 2024, 2:52 p.m.

Hi Yunheng,

The test data consists of 3D images, and the output results should be binary, meaning they should be within the range [0, 1].

Best regards, Ying Chen

Re: Failed The algorithm failed on one or more cases.  

  By: 516936971 on Sept. 4, 2024, 5:05 a.m.

Hi Ying

Thank you for your reply!

Best regards, Yunheng