-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
Dear authors of the SEVIR benchmark, we are recently running the SEVIR benchmark but noticed that there's a potential problem of the current implementation of the CSI score:
sevir_challenges/src/metrics/metrics.py
Line 138 in 6e18184
| return (hits+1e-6)/(hits+misses+fas+1e-6) |
When the threshold is large, it is possible that the hits, misses and fas of the model are all zero. The current formulation will produce csi=1.0 in such case (while it should give csi=0.0). To avoid this problem, a better formula might be
return hits / (hits+misses+fas+1e-6)
CC @gaozhihan also
Metadata
Metadata
Assignees
Labels
No labels