-
Notifications
You must be signed in to change notification settings - Fork 40
Description
Hi,
We are noticing an increasing number of submissions getting stuck on certain statuses (preparing, running, scoring) in our challenge:
https://www.codabench.org/competitions/9950/
Sometimes resubmitting the same zip file results in the new submission going through (while the old one remains stuck).
When we looked at a submission that was stuck in the "Scoring" status we noticed its predictions json file was valid, and as such it's expected to get a score, but in the output directory we also found the submitted model files (not just the predictions.json as our code dictates).
This means that every submission going through the pipeline is undergoing packaging again before being written to the output directory.
As our challenge involves relatively large file submissions (up to 7GB), we suspect this takes up too much of the submission runtime and causes unnecessary traffic issues.
Is there a way to control the contents of the output directory besides the ingestion code? We'd like to only get the "predictions.json" and the metadata files produced by the competitors, without their entire submitted model being there as well.
Thanks!