You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For KIS tasks it would be good to reward finding the correct video, because often a video contains similar or even equal scenes (for example in news videos, where there is a preview of a scene). Such an example is given in V3C video 05579, which contains an almost identical scene at 02:52 and 16:23 (happened at IVR4B2024 at Task v7).
One possibility would be to give half the points for finding a scene in the correct video (e.g., 500 - ; instead of 1000 - ).
The text was updated successfully, but these errors were encountered:
As far as I know the KIS scoring currently is a follows:
int(max(0, r^i(t) - p^i(ws) ))
r^i(t) = (1000 - s_{min}) * ((t_{max} - t) / t_{max} + s_{min})
p^i(ws) = ws * 100
We could modify it for KIS tasks so that for correct videos, r could be used like this (thanks to Omar for this suggestion):
r^i(t) = (500 - s_{min}) * ((t_{max} - t) / t_{max} + s_{min})
If the correct segment in the video is found later, the original function could be used (and maybe the previously submitted segment in the same video could be considered as a wrong submission).
But I think this should be also discussed with the VBS teams.
For KIS tasks it would be good to reward finding the correct video, because often a video contains similar or even equal scenes (for example in news videos, where there is a preview of a scene). Such an example is given in V3C video 05579, which contains an almost identical scene at 02:52 and 16:23 (happened at IVR4B2024 at Task v7).
One possibility would be to give half the points for finding a scene in the correct video (e.g., 500 - ; instead of 1000 - ).
The text was updated successfully, but these errors were encountered: