Home > AI > Uncategorized

Jaro wrinkle similarity

S_w = S_j + P * L * (1 - S_j)

Where S_w means the jaro wrinkle score, S_j means the jaro score, P is the scaling factor which is usually a predefined constant, L is the length of maximum match prefix of two strings.

Here is the code implemented in Python

Related posts:
Relevant tags:

Leave a Reply