Dears,
I made a submission following the given guidelines. I tested the docker image locally, but when submitted the log file (9748512_logs.zip) indicates that the submission is invalid. I have examined the log file but couldn't pin point the issue. I am using Python 3.10 and Pytorch 11.8. Could you please support me in this matter?
Kind regards,
Ibrahim
Created by Ibrahim Alsaggaf ialsag01 Dear Gaurav,
Many thanks. The file was copied but the path wasn't handled. My second submission has appeared on the leader board.
Kind regards,
Ibrahim Dear Ibrahim,
Thank you for reaching out regarding the issue with your Docker submission. After reviewing the submission, it appears that the error is due to the script being unable to locate a file named **Beta_filtered_subchallenge1_probes.csv**. This is causing a **FileNotFoundError**, which prevents your submission from being successfully processed.
The likely cause of this issue is that the **Beta_filtered_subchallenge1_probes.csv** file is not included in your Docker image. Please ensure that the file is copied into the Docker image during the build process. You can do this by adding a COPY or ADD command to your Dockerfile similar to how the model is handled in the example Dockerfile: `COPY model_test_SC1.rds /usr/local/bin/`
Gaurav Bhatti