Execution Failed

Execution Failed  

  By: jayesh0vasudeva on July 4, 2024, 3:08 p.m.

Hi organizers,

My execution failed for some reason, initially I had the orientation wrong and got a size mismatch error, corrected that. Later I figured I might be consuming more than 16GB but I checked locally on some training samples and I'm well under 11GBs. I don't understand what might be going wrong. If someone can review the logs for me I would be thankful!

Best, Jayesh S Vasudeva

Re: Execution Failed  

  By: imran.muet on July 8, 2024, 1:32 p.m.

Hi Jayesh,

For the log of your algorithm, please check your inbox on the Grand-Challenge website.

Additionally, I have a tip that might help: when using sliding window inference, try transferring the data to the CPU instead of the GPU. You can do this as shown below:

sliding_window_inference(image, (patch_size, patch_size, patch_size), num_samples, model, device='cpu')

I hope this resolves the issue.