Dear Soumyadeep,
Thank you for making software submissions, we are really happy about this!
No worries, we will resolve the problem, and we will help you to finalize your submissions!
In other chats (e.g., here), we collected a set of tips that simplify the process of making docker submissions. Here I collected them again.
Please ensure, that:
- The script is executable (e.g., add
chmod +x sol.py
to your docker build process) - The script has a valid shebang (e.g., add a first line like
#!/usr/bin/env python3
to your script sol.py. More information here) - Refer to your script by an absolute path. I.e., instead of
./sol.py
specify/<YOUR-DIRECTORY>/sol.py
(assuming that your scriptsol.py
is inside a directory with the absolute path/<YOUR-DIRECTORY>
) - Ensure that all models are included in the docker image (as we remove the internet connection from a running software to improve reproducibility)
- Ensure that models are loaded via an absolute path
Can you please resubmit with those changes?
Thanks in advance!
Best Regards,
Maik