Skip to content

Potential problem of the CSI score #1

@sxjscience

Description

@sxjscience

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:

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions