-
Notifications
You must be signed in to change notification settings - Fork 129
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
Is it possible to give an empty score to a value in the leaderboard? #2736
Comments
Hi, I am not sure but I think by default if the scoring program returns nothing, it puts a Then, if you don't know, you can combine the results from various task with something like this in competition.yaml file:
In this case we rank participants with the average rank among the two tasks. |
Hi Adrien, thanks for the response. After some tests, I see that if you have various scores, and you give nothing for one of them, the scoring program is not able to compute all the rest of the scores and puts (-)- in the first rank and nothing in the others. We would like to have a - in the tasks where the submission has not participated but numerical values in the rest. For example, my competition.yaml will have something like:
If in scores.txt there is only, e.g. If I put anything else, e.g. On another topic, now that you comment on the avg, is it possible to define a different average over the ranks? We are interested in using the mean reciprocal rank, which is the mean of the inverse of the ranks. Is it possible to define such average? Where is the operation Avg defined? Thanks again for your help! |
Hi Gorka, Sorry for the late reply.
I'm not sure how to do that. I remember having coded a multi-task scoring program which doesn't fail when a task is missing. But it returns a specific value for the missing task. Here is the code if it ever helps.
This is a very good question. I never used something else.
You can do a pull request to add new operations if you wish. |
+1 for having some way to indicate |
For future: scoring programs should be able to return |
Merged. |
Please check this PR #3451 |
By the way, on Codabench I think leaderboard can have N/A scores. |
We are creating a competition in which we will have various subtasks. Participants do not have to participate in all subtasks. Is there a way of giving a non-numeric value to a given value in the leaderboard? For example, if the participant only participates in Task1, but not Task2, the column of Task1 would have a score but the column of Task2 something like ' - '. Then the rank with respect to Task2 would put this submission in last position.
Thanks for the help!
The text was updated successfully, but these errors were encountered: