Closed kasra-hosseini closed 2 years ago
In candidateRanker lines 326 and 330, there is a hardcoded multiplier 1.01 to "avoid issues with float numbers and rounding errors". Is it possible to find a better way for this, e.g., numpy.isclose?
1.01
numpy.isclose
Done: https://github.com/Living-with-machines/DeezyMatch/pull/121
In candidateRanker lines 326 and 330, there is a hardcoded multiplier
1.01
to "avoid issues with float numbers and rounding errors". Is it possible to find a better way for this, e.g.,numpy.isclose
?