-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issue "Preparing submission... this may take a few moments.." never run just in submitting stage #1708
Comments
Hello, can you post or send us ([email protected]) the link of the competition ? |
I have not published it yet , I am testing it before publishing it |
I see that the default queue is behaving correctly on our end, other competitions can run submissions without problems. I also ran a submission on my own test competition and everything worked correctly. Maybe the problem comes from the way your competition is configured ? Are you using the default docker image for competition or a custom one ? |
I don't know if it will fix your problem, but you can try to use |
It still same issue , there are no logs at all and the status is submitting |
Can you add me as an organizer ? I'll try to do some submissions to see if mine works. |
sure , is it working with you ? |
I was able to submit something which successfully got past the I added you to one of my test competition (called Iris), try to submit something there please. |
I did and it works . Maybe there is an issue with the paths in my scoring.py file ? |
I ran your |
chrome.. Is it evaluated ? i mean you can move it to leaderboard ? |
I reran yours again, but it is still the same. Anyway, if others are able to run it, then no problem. I have increased the time; can you resubmit to ensure the scoring file will run? Because up until this point, it has not run yet |
I submitted it again. |
No, I mean the 'scoring program' to evaluate the submission against the ground truth |
is there a specific format for that file? can you double check it ? |
You can find examples here : https://github.com/codalab/competition-examples/tree/master/codabench I will bring your issue with the team on our next meeting, hopefully I will have more information for you afterward. Concerning your current file, the worker log might give you more information as to what is missing : [2024-12-18 20:57:34,277: INFO/ForkPoolWorker-79] Running scoring program, and then ingestion program
[2024-12-18 20:57:34,278: INFO/ForkPoolWorker-79] Program directory missing metadata, assuming it's going to be handled by ingestion program so move it to output
[2024-12-18 20:57:34,278: INFO/ForkPoolWorker-79] /codabench/tmpn8c5lom6/ingestion_program not found, no program to execute
[2024-12-18 20:57:34,279: INFO/ForkPoolWorker-79] 9.5367431640625e-07
[2024-12-18 20:57:39,284: INFO/ForkPoolWorker-79] 5.005452394485474
[2024-12-18 20:57:44,289: INFO/ForkPoolWorker-79] 10.01093602180481
[2024-12-18 20:57:49,295: INFO/ForkPoolWorker-79] 15.016502618789673
[2024-12-18 20:57:54,301: INFO/ForkPoolWorker-79] 20.02216148376465
[2024-12-18 20:57:59,306: INFO/ForkPoolWorker-79] 25.027804851531982
[2024-12-18 20:58:04,312: INFO/ForkPoolWorker-79] 30.033443450927734
[2024-12-18 20:58:09,318: INFO/ForkPoolWorker-79] 35.03897023200989
[2024-12-18 20:58:14,323: INFO/ForkPoolWorker-79] 40.04458689689636
[2024-12-18 20:58:19,329: INFO/ForkPoolWorker-79] 45.05028676986694
[2024-12-18 20:58:24,334: INFO/ForkPoolWorker-79] 50.055930376052856
[2024-12-18 20:58:29,340: INFO/ForkPoolWorker-79] 55.06159567832947
[2024-12-18 20:58:34,346: INFO/ForkPoolWorker-79] 60.067262172698975
[2024-12-18 20:58:34,346: WARNING/ForkPoolWorker-79] Detailed results not written to after 60 seconds, exiting!
[2024-12-18 20:58:39,351: INFO/ForkPoolWorker-79] 65.07292580604553 It tries to write the results for 20 minutes then fails since we have a 20 minutes execution limit on the default queue. |
It seems like the problem comes from your scoring program. I suggest taking a look at the Iris scoring program : https://github.com/codalab/competition-examples/blob/master/codabench/iris/bundle/scoring_program/score.py You can submit results for this competition (example : https://github.com/codalab/competition-examples/blob/master/codabench/iris/sample_result_submission.zip) , which is the same thing you are trying to do. Maybe the path in which your scoring program is trying the find the data is wrong ? |
yes this is the issue. How should I deal with paths? like the submission file after it submitted how to refer to it in my [ingestion.py] file ? and after that how to pass the result to the scoring .. I tried to follow the examples but it is sill the same issue |
Did you change path in the scoring and/or ingestion programs? Another possibility is that the problem comes from zipping with directory structure. You can update your programs following this Wiki page: https://github.com/codalab/codabench/wiki/Resource-Management |
These are the links in my scoring file. Are they correct? Previously, I included an ingestion file, but then I removed it since I only need the participants to submit their prediction results. However, after removing it, the submission stays in the running state until the time exceeds, or it continues running if I increase the time limit.: f name == "main":
|
It seems there is an issue because even if I try to include a print statement at the top of the scoring file, it does not print anything, so it is not being accessed |
@SondosBsharat Any update on this? Did you manage to solve the issue? |
how to solve this issue?


it keeps on submitting status and never changes ,even the log file is empty
The text was updated successfully, but these errors were encountered: