JonathonLuiten / TrackEval

HOTA (and other) evaluation metrics for Multi-Object Tracking (MOT).
MIT License
965 stars 239 forks source link

Remove is-not expressions with str #59

Closed jvlmdr closed 3 years ago

jvlmdr commented 3 years ago

I believe it's not safe to use is to compare string values in python. It may work sometimes, but it depends on the python implementation. It's better to use ==.